Commit 6d37376a authored by huhaiqing's avatar huhaiqing

修海运问题

parent 554c13af
......@@ -304,7 +304,9 @@ export default {
// 二维码/条码编号
qrCode: "",
// 批量输入
batchObj: {},
batchObj: {
boxNum: 0,
},
// 批量纠错(订单号)
orderObj: {},
// 纠错
......@@ -403,7 +405,7 @@ export default {
break;
case "batchInput":
this.$set(this.dialogConfig, "fullscreen", false);
this.batchObj = {};
this.batchObj = { boxNum: 0 };
this.boxOrderInfo = {};
break;
case "correction":
......@@ -588,7 +590,7 @@ export default {
}).then((res) => {
const { data } = res;
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