Merge remote-tracking branch 'origin/master'

prod
郑明梁 2 years ago
commit 43753e956d

@ -6,6 +6,7 @@
<el-form-item label="当前仓库" prop="curInv"> <el-form-item label="当前仓库" prop="curInv">
<el-select v-model="inputQuery.curInv" placeholder="当前仓库" <el-select v-model="inputQuery.curInv" placeholder="当前仓库"
@change="curInvChange" @change="curInvChange"
@clear="clear"
filterable filterable
style="width: 90%" style="width: 90%"
clearable> clearable>
@ -42,6 +43,7 @@
<el-form-item label="委托仓库" prop="entrustInv"> <el-form-item label="委托仓库" prop="entrustInv">
<el-select v-model="inputQuery.entrustInv" placeholder="委托仓库" <el-select v-model="inputQuery.entrustInv" placeholder="委托仓库"
@change="entrustInvChange" @change="entrustInvChange"
@clear="clear1"
filterable filterable
style="width: 90%" style="width: 90%"
clearable> clearable>
@ -170,12 +172,15 @@ export default {
// //
curInvChange() { curInvChange() {
this.getOrderType();
this.findEntrustInv();
},
clear(){
this.inputQuery.action = null; this.inputQuery.action = null;
this.inputQuery.entrustInv = null; this.inputQuery.entrustInv = null;
this.inputQuery.entrustUser = null; this.inputQuery.entrustUser = null;
this.inputQuery.entrustAction = null; this.inputQuery.entrustAction = null;
this.getOrderType();
this.findEntrustInv();
}, },
// //
@ -204,9 +209,11 @@ export default {
// //
entrustInvChange() { entrustInvChange() {
this.getUserBus();
},
clear1(){
this.inputQuery.entrustUser = null; this.inputQuery.entrustUser = null;
this.inputQuery.entrustAction = null; this.inputQuery.entrustAction = null;
this.getUserBus();
}, },

Loading…
Cancel
Save