Commit 6d37376a authored by huhaiqing's avatar huhaiqing

修海运问题

parent 554c13af
...@@ -304,7 +304,9 @@ export default { ...@@ -304,7 +304,9 @@ export default {
// 二维码/条码编号 // 二维码/条码编号
qrCode: "", qrCode: "",
// 批量输入 // 批量输入
batchObj: {}, batchObj: {
boxNum: 0,
},
// 批量纠错(订单号) // 批量纠错(订单号)
orderObj: {}, orderObj: {},
// 纠错 // 纠错
...@@ -403,7 +405,7 @@ export default { ...@@ -403,7 +405,7 @@ export default {
break; break;
case "batchInput": case "batchInput":
this.$set(this.dialogConfig, "fullscreen", false); this.$set(this.dialogConfig, "fullscreen", false);
this.batchObj = {}; this.batchObj = { boxNum: 0 };
this.boxOrderInfo = {}; this.boxOrderInfo = {};
break; break;
case "correction": case "correction":
...@@ -588,7 +590,7 @@ export default { ...@@ -588,7 +590,7 @@ export default {
}).then((res) => { }).then((res) => {
const { data } = res; const { data } = res;
this.boxOrderInfo = data; this.boxOrderInfo = data;
this.batchObj.boxNum = data.num; this.batchObj.boxNum = Number(data.num);
}); });
} }
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment