fix 79604
This commit is contained in:
@@ -13,6 +13,9 @@
|
|||||||
<a-form-model-item class="item-model" prop="standardizationFirstId">
|
<a-form-model-item class="item-model" prop="standardizationFirstId">
|
||||||
<a-select v-model="formInline.standardizationFirstId"
|
<a-select v-model="formInline.standardizationFirstId"
|
||||||
:disabled="disabled"
|
:disabled="disabled"
|
||||||
|
allowClear
|
||||||
|
showSearch
|
||||||
|
:filter-option="filterOption"
|
||||||
@change="changeSubStandardizationCommitteeList"
|
@change="changeSubStandardizationCommitteeList"
|
||||||
:placeholder="$t('pleaseSelect')+$t('workCenter.postMeetingManageProcess.subStandardizationCommitteeName')">
|
:placeholder="$t('pleaseSelect')+$t('workCenter.postMeetingManageProcess.subStandardizationCommitteeName')">
|
||||||
<a-select-option v-for="item in subStandardizationCommitteeList" :key="item.id" :value="item.id">{{ item.name }}</a-select-option>
|
<a-select-option v-for="item in subStandardizationCommitteeList" :key="item.id" :value="item.id">{{ item.name }}</a-select-option>
|
||||||
@@ -29,6 +32,9 @@
|
|||||||
<a-form-model-item class="item-model" prop="standardizationSecondId">
|
<a-form-model-item class="item-model" prop="standardizationSecondId">
|
||||||
<a-select v-model="formInline.standardizationSecondId"
|
<a-select v-model="formInline.standardizationSecondId"
|
||||||
:disabled="disabled"
|
:disabled="disabled"
|
||||||
|
allowClear
|
||||||
|
showSearch
|
||||||
|
:filter-option="filterOption"
|
||||||
:placeholder="$t('pleaseSelect')+$t('workCenter.postMeetingManageProcess.workGroupName')">
|
:placeholder="$t('pleaseSelect')+$t('workCenter.postMeetingManageProcess.workGroupName')">
|
||||||
<a-select-option v-for="item in workGroupList" :key="item.id" :value="item.id">{{ item.name }}</a-select-option>
|
<a-select-option v-for="item in workGroupList" :key="item.id" :value="item.id">{{ item.name }}</a-select-option>
|
||||||
</a-select>
|
</a-select>
|
||||||
@@ -263,6 +269,11 @@ export default {
|
|||||||
/** 赋值给当前对应的表单文件 */
|
/** 赋值给当前对应的表单文件 */
|
||||||
this.$set(this.formInline, 'fileIds', attIdList.join(','))
|
this.$set(this.formInline, 'fileIds', attIdList.join(','))
|
||||||
// this.formInline.attachment = attIdList.join(',')
|
// this.formInline.attachment = attIdList.join(',')
|
||||||
|
},
|
||||||
|
filterOption (input, option) {
|
||||||
|
return (
|
||||||
|
option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user