@@ -302,6 +310,7 @@ export default {
},
data() {
return {
+ workplaceId: null,
//单据相关
orderFormData: {
billNo: null,
@@ -444,7 +453,9 @@ export default {
showSearch: false,
scanCode: "",
isSuccess: false,
- result: "扫码解析结果:"
+ result: "",
+ scanResultType: "success",
+ msgTip: "工位存量提醒:",
};
},
components: {
@@ -1636,6 +1647,10 @@ export default {
},
created() {
this.init();
+ if (this.$route.query.workplaceId != null){
+ this.corpOrderIdDisabled = true
+ this.workplaceId = this.$route.query.workplaceId
+ }
},
};