|
|
|
@ -751,7 +751,7 @@ export default {
|
|
|
|
|
this.queueCodeTotal = 0
|
|
|
|
|
this.collectSet = null
|
|
|
|
|
this.alertInit()
|
|
|
|
|
if (!isBlank(this.message)){
|
|
|
|
|
if (!isBlank(this.message) && this.message.includes("DMQ")){
|
|
|
|
|
EventBus.$emit('sendCreateData', { message: this.message });
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
@ -910,13 +910,14 @@ export default {
|
|
|
|
|
// 更新数据
|
|
|
|
|
if (!isBlank(data)){
|
|
|
|
|
//如果是 over 表示上货页面完成 初始化
|
|
|
|
|
if (data == 'over'){
|
|
|
|
|
if (data.includes("over")){
|
|
|
|
|
this.dropCode()
|
|
|
|
|
return;
|
|
|
|
|
}else {
|
|
|
|
|
this.scanCode = data;
|
|
|
|
|
this.workplaceId = this.$route.query.workplaceId
|
|
|
|
|
this.handleSlotCodeScan()
|
|
|
|
|
}
|
|
|
|
|
this.scanCode = data;
|
|
|
|
|
this.workplaceId = this.$route.query.workplaceId
|
|
|
|
|
this.handleSlotCodeScan()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
@ -993,7 +994,7 @@ export default {
|
|
|
|
|
created() {
|
|
|
|
|
this.workplaceId = this.$route.query.workplaceId
|
|
|
|
|
// this.selectSysParam()
|
|
|
|
|
if (!isBlank(this.message)){
|
|
|
|
|
if (!isBlank(this.message) && this.message.includes("DMQ")){
|
|
|
|
|
this.scanCode = this.message
|
|
|
|
|
this.handleSlotCodeScan()
|
|
|
|
|
}
|
|
|
|
|