From b07c57e80f5607975a09819b0bbe198a49950a9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=94=A6=E9=B9=8F?= <709691139@qq.com> Date: Tue, 13 Sep 2022 06:30:22 +0000 Subject: [PATCH] =?UTF-8?q?update=20src/components/JVxeCustom/src/componen?= =?UTF-8?q?ts/JVxeSelectDictSearchCell.ts.=20fix:=20=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E5=BC=82=E6=AD=A5=E6=90=9C=E7=B4=A2=E6=A8=A1=E5=BC=8F=E4=B8=8B?= =?UTF-8?q?=EF=BC=8COptions=E4=B8=80=E7=9B=B4=E4=B8=BA=E7=A9=BA=E7=95=8C?= =?UTF-8?q?=E9=9D=A2;=20=E5=85=B3=E8=81=94issues:=20https://gitee.com/jeec?= =?UTF-8?q?g/jeecgboot-vue3/issues/I5QRT8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../JVxeCustom/src/components/JVxeSelectDictSearchCell.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/JVxeCustom/src/components/JVxeSelectDictSearchCell.ts b/src/components/JVxeCustom/src/components/JVxeSelectDictSearchCell.ts index a7b62ab..7cf02c0 100644 --- a/src/components/JVxeCustom/src/components/JVxeSelectDictSearchCell.ts +++ b/src/components/JVxeCustom/src/components/JVxeSelectDictSearchCell.ts @@ -41,7 +41,7 @@ export const DictSearchInputCell = defineComponent({ // 筛选函数 const filterOption = computed(() => { if (isAsync.value) { - return null; + return ()=>true; } return (input, option) => option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0; }); -- Gitee