|
|
|
@ -227,14 +227,16 @@ export default {
|
|
|
|
|
code: code
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.$set(this.inputQuery, "entrustUser","");
|
|
|
|
|
this.$set(this.inputQuery, "entrustAction","");
|
|
|
|
|
// this.$set(this.inputQuery, "entrustUser","");
|
|
|
|
|
// this.$set(this.inputQuery, "entrustAction","");
|
|
|
|
|
this.$forceUpdate();
|
|
|
|
|
//加载用户数据
|
|
|
|
|
warehouseUserList(query).then((res) => {
|
|
|
|
|
this.entrustUserArray=[];
|
|
|
|
|
this.entrustUserArray = res.data;
|
|
|
|
|
|
|
|
|
|
if (this.inputQuery.entrustUser != null && this.inputQuery.entrustUser != '') {
|
|
|
|
|
this.inputQuery.entrustUser = Number(this.inputQuery.entrustUser);
|
|
|
|
|
}
|
|
|
|
|
}).catch((error) => {
|
|
|
|
|
this.$message.error("用户数据加载失败")
|
|
|
|
|
});
|
|
|
|
@ -242,7 +244,6 @@ export default {
|
|
|
|
|
//加载单据类型数据
|
|
|
|
|
warehouseBussinessTypeList(query).then((res) => {
|
|
|
|
|
this.entrustBusArray = res.data;
|
|
|
|
|
|
|
|
|
|
}).catch((error) => {
|
|
|
|
|
this.$message.error("单据类型数据加载失败")
|
|
|
|
|
});
|
|
|
|
|