10/8 页面优化1.0

20240912_adapter
wangwei 6 months ago
parent fcde54a7de
commit 017a0f17b5

@ -221,7 +221,7 @@ export function errorHandleSubmit(query) {
export function orderFinish(query) {
return axios({
url: "/udiwms/basic/collect/orderFinish/filter",
method: "post",
method: "get",
data: query
});
}

@ -1188,7 +1188,7 @@ export default {
JSON.parse(JSON.stringify(this.orderFormData))
);
tQuery.code = this.codeFormData.code;
tQuery.orderType = this.viewType;
tQuery.orderType = 2;
tQuery.splitType = this.splitType;
this.addCodeSubmit(tQuery);
this.$refs.inputRef.select();
@ -1330,7 +1330,7 @@ export default {
});
}
}
this.loading = false;
// this.loading = false;
});
},
@ -1585,6 +1585,7 @@ export default {
this.$message.success("提交成功");
this.successCloseData()
this.result = ""
this.$refs.inputRef.focus();
if (this.closeDialog != undefined) {
this.closeDialog();
}
@ -1659,13 +1660,18 @@ export default {
return;
}
this.saveLoading = true
if (this.splitType == 'return'){
tQuery.inoutType = 2
}else {
tQuery.inoutType = 1
}
saveOrderWeb(tQuery).then((response) => {
this.saveLoading = false
if (response.code === 20000) {
this.$message.success("保存成功")
this.successCloseData()
this.result = ""
this.$refs.inputRef.focus();
} else {
this.$message.error(response.message);
}

Loading…
Cancel
Save