diff --git a/src/components/jeecg/JVxeTable/src/components/cells/JVxeSelectCell.vue b/src/components/jeecg/JVxeTable/src/components/cells/JVxeSelectCell.vue index d48696c..ed9d17c 100644 --- a/src/components/jeecg/JVxeTable/src/components/cells/JVxeSelectCell.vue +++ b/src/components/jeecg/JVxeTable/src/components/cells/JVxeSelectCell.vue @@ -5,7 +5,7 @@  加载中… @@ -133,9 +133,12 @@ /** 用于搜索下拉框中的内容 */ function handleSelectFilterOption(input, option) { + let { allowSearch, allowInput } = originColumn.value; if (allowSearch === true || allowInput === true) { - return option.value.toLowerCase().indexOf(input.toLowerCase()) >= 0; + // update-begin--author:liaozhiyang---date:20230904---for:【issues/5305】JVxeTypes.select 无法按照预期进行搜索 + return option.title.toLowerCase().indexOf(input.toLowerCase()) >= 0; + // update-begin--author:liaozhiyang---date:20230904---for:【issues/5305】JVxeTypes.select 无法按照预期进行搜索 } return true; }