|
|
@@ -77,8 +77,10 @@
|
|
|
<div class="col-sm-10">
|
|
|
<a-select
|
|
|
v-model:value="taskDefineDto.processNo"
|
|
|
- :options="processNos"
|
|
|
+ show-search
|
|
|
style="width: 100%"
|
|
|
+ :options="processNos"
|
|
|
+ :filter-option="filterOption"
|
|
|
@change="processNoChang"
|
|
|
/>
|
|
|
</div>
|
|
|
@@ -1482,6 +1484,9 @@ export default {
|
|
|
},
|
|
|
);
|
|
|
},
|
|
|
+ filterOption:function (input, option) {
|
|
|
+ return option.label.toLowerCase().indexOf(input.toLowerCase()) >= 0;
|
|
|
+ },
|
|
|
// 深拷贝
|
|
|
deepClone: function (obj) {
|
|
|
const _self = this;
|