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

fencang
x_z 3 years ago
parent e67b84ec09
commit 9ea61d2b2d

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

Loading…
Cancel
Save