Merge remote-tracking branch 'origin/master'

prod
郑明梁 2 years ago
commit 43753e956d

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

Loading…
Cancel
Save