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 + ) } } }