From 3457a067bed5ca1d9386d5b4eff6c017377fc10c Mon Sep 17 00:00:00 2001 From: gengxin Date: Fri, 14 Feb 2025 17:18:37 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=B2=E5=B8=88=E8=B4=B9=E7=AE=A1=E7=90=86?= =?UTF-8?q?=EF=BC=8C=E9=80=89=E6=8B=A9=E5=9F=B9=E8=AE=AD=E5=8F=91=E7=94=9F?= =?UTF-8?q?=E7=BB=84=E7=BB=87=20,=20=E9=87=8D=E6=96=B0=E5=A4=84=E7=90=86?= =?UTF-8?q?=20=E8=BF=87=E6=BB=A4=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/lecturer/LecturerFee.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/lecturer/LecturerFee.vue b/src/views/lecturer/LecturerFee.vue index 7e08e786..cd752a21 100644 --- a/src/views/lecturer/LecturerFee.vue +++ b/src/views/lecturer/LecturerFee.vue @@ -1562,7 +1562,7 @@ export default { //TODO4 筛查 const handleOrgSearch = (input , option) => { let temp = JSON.parse(JSON.stringify(state.orgListSearch)); - return temp.filter((item) => item.includes(input)) + return temp.filter((item) => item.label.includes(input)) // return `${option.label}`.toLowerCase().includes(`${input || ''}`.toLowerCase()); }