From 74e553ddf73129aed731353d88a534e6fcef4f14 Mon Sep 17 00:00:00 2001 From: danshihao Date: Fri, 22 Dec 2023 17:24:26 +0800 Subject: [PATCH] fix 79604 --- .../postMeetingManageProcess/modules/BaseInfoForm.vue | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/views/workCenter/postMeetingManageProcess/modules/BaseInfoForm.vue b/src/views/workCenter/postMeetingManageProcess/modules/BaseInfoForm.vue index d448eaf9..c5e65081 100644 --- a/src/views/workCenter/postMeetingManageProcess/modules/BaseInfoForm.vue +++ b/src/views/workCenter/postMeetingManageProcess/modules/BaseInfoForm.vue @@ -13,6 +13,9 @@ {{ item.name }} @@ -29,6 +32,9 @@ {{ item.name }} @@ -263,6 +269,11 @@ export default { /** 赋值给当前对应的表单文件 */ this.$set(this.formInline, 'fileIds', attIdList.join(',')) // this.formInline.attachment = attIdList.join(',') + }, + filterOption (input, option) { + return ( + option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0 + ) } } }