1.修复库存查询供应商候选输入框清空后候选项没有同步刷新的问题

fencang
x_z 3 years ago
parent e67b84ec09
commit 9ea61d2b2d

@ -23,6 +23,7 @@
:remote-method="findMethod"
size="mini"
:loading="loading"
@change="corpChange"
>
<el-option
v-for="item in fromOptions"
@ -369,6 +370,11 @@ export default {
this.idQuery.customerId = null;
this.codeDetailVisible = true;
},
corpChange(value) {
if (isBlank(value)) {
this.findMethod();
}
}
},
filters: {
statusFilterType(status) {

Loading…
Cancel
Save