|
|
|
@ -9,7 +9,7 @@
|
|
|
|
|
<div class="itemTag">
|
|
|
|
|
<span>扫码单据类型: </span>
|
|
|
|
|
</div>
|
|
|
|
|
<el-select v-model="inputQuery.action" placeholder="请选择" clearable @change="actionChange">
|
|
|
|
|
<el-select v-model="inputQuery.action" placeholder="请选择" clearable>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in busTypes"
|
|
|
|
|
:key="item.localAction"
|
|
|
|
@ -217,24 +217,8 @@ export default {
|
|
|
|
|
let query = {
|
|
|
|
|
code: code
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.inputQuery.entrustInv="";
|
|
|
|
|
//加载用户数据
|
|
|
|
|
warehouseUserList(query).then((res) => {
|
|
|
|
|
this.entrustUserArray = res.data;
|
|
|
|
|
}).catch((error) => {
|
|
|
|
|
this.$message.error("用户数据加载失败")
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
//加载单据类型数据
|
|
|
|
|
warehouseBussinessTypeList(query).then((res) => {
|
|
|
|
|
this.entrustBusArray = res.data;
|
|
|
|
|
}).catch((error) => {
|
|
|
|
|
this.$message.error("单据类型数据加载失败")
|
|
|
|
|
});
|
|
|
|
|
if (this.$isBlank(this.inputQuery.entrustInv)) {
|
|
|
|
|
this.inputQuery.entrustUser = null;
|
|
|
|
|
}
|
|
|
|
|
this.$set(this.inputQuery, "entrustUser","");
|
|
|
|
|
this.$set(this.inputQuery, "entrustInv","");
|
|
|
|
|
this.getEntrustStorage();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
@ -243,9 +227,14 @@ export default {
|
|
|
|
|
code: code
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.$set(this.inputQuery, "entrustUser","");
|
|
|
|
|
this.$set(this.inputQuery, "entrustAction","");
|
|
|
|
|
this.$forceUpdate();
|
|
|
|
|
//加载用户数据
|
|
|
|
|
warehouseUserList(query).then((res) => {
|
|
|
|
|
this.entrustUserArray=[];
|
|
|
|
|
this.entrustUserArray = res.data;
|
|
|
|
|
|
|
|
|
|
}).catch((error) => {
|
|
|
|
|
this.$message.error("用户数据加载失败")
|
|
|
|
|
});
|
|
|
|
@ -253,16 +242,15 @@ export default {
|
|
|
|
|
//加载单据类型数据
|
|
|
|
|
warehouseBussinessTypeList(query).then((res) => {
|
|
|
|
|
this.entrustBusArray = res.data;
|
|
|
|
|
|
|
|
|
|
}).catch((error) => {
|
|
|
|
|
this.$message.error("单据类型数据加载失败")
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
actionChange(action) {
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
computed: {
|
|
|
|
|
corpType() {
|
|
|
|
|