|
|
|
@ -20,7 +20,8 @@
|
|
|
|
|
<!-- </el-row>-->
|
|
|
|
|
|
|
|
|
|
<el-button-group
|
|
|
|
|
style="display: flex; margin-top: 5px; float: right"
|
|
|
|
|
style="display: flex; margin-top: 5px; justify-content: flex-end;"
|
|
|
|
|
|
|
|
|
|
>
|
|
|
|
|
<el-button size="mini" type="primary" @click.native="paizhao()"
|
|
|
|
|
v-if="collectSet != null && collectSet.autoDecode == 0"
|
|
|
|
@ -294,6 +295,7 @@ import {splitFifoDetail} from '@/api/inout/splitCode'
|
|
|
|
|
import {batchAddCode, batchVailCode, enterCodeWeb} from '@/api/inout/order'
|
|
|
|
|
import {getSet} from '@/api/collect/collectSet'
|
|
|
|
|
import A from '@/plugins/KeyScaner'
|
|
|
|
|
import { EventBus } from '@/eventBus'; // 引入事件总线
|
|
|
|
|
|
|
|
|
|
const SLOT_CODE_PREFIX = 'DMQ'
|
|
|
|
|
|
|
|
|
@ -303,7 +305,13 @@ export default {
|
|
|
|
|
resetKey: {
|
|
|
|
|
type: Function,
|
|
|
|
|
required: true
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
message: {
|
|
|
|
|
type: String,
|
|
|
|
|
default: '',
|
|
|
|
|
required: false
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
watch: {
|
|
|
|
|
resetKey(newVal, oldVal) {
|
|
|
|
@ -417,6 +425,7 @@ export default {
|
|
|
|
|
this.isSuccess = true
|
|
|
|
|
this.deleteCode()
|
|
|
|
|
this.init()
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
if (response.code == 502) {
|
|
|
|
|
this.checkSuccess = false
|
|
|
|
@ -484,6 +493,10 @@ export default {
|
|
|
|
|
this.getSplitCodes()
|
|
|
|
|
this.init()
|
|
|
|
|
//扫码结果
|
|
|
|
|
console.log("shanchu wan ma",this.message)
|
|
|
|
|
if (!isBlank(this.message)){
|
|
|
|
|
EventBus.$emit('sendCreateData', { message: this.message });
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
//追溯码不存在
|
|
|
|
|
let printData = [
|
|
|
|
@ -711,8 +724,9 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
dropCode() {
|
|
|
|
|
this.redMeg = true
|
|
|
|
|
this.curQueueName = '',
|
|
|
|
|
this.curQueueName = ''
|
|
|
|
|
this.isCheckQueue = false
|
|
|
|
|
this.curProductData = ''
|
|
|
|
|
this.curQueue = null
|
|
|
|
|
this.queueCodes = []
|
|
|
|
|
this.splitCodes = []
|
|
|
|
@ -730,7 +744,7 @@ export default {
|
|
|
|
|
this.splitCodeTotal = 0
|
|
|
|
|
this.queueCodeTotal = 0
|
|
|
|
|
this.collectSet = null
|
|
|
|
|
|
|
|
|
|
this.alertInit()
|
|
|
|
|
},
|
|
|
|
|
paizhao() {
|
|
|
|
|
if (this.ws && this.ws.readyState === WebSocket.OPEN) {
|
|
|
|
@ -881,6 +895,19 @@ export default {
|
|
|
|
|
console.log('关闭工位剔除websocket成功')
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
handleData(data) {
|
|
|
|
|
this.message = data
|
|
|
|
|
// 更新数据
|
|
|
|
|
if (!isBlank(data)){
|
|
|
|
|
if (data == 'over'){
|
|
|
|
|
this.dropCode()
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
this.scanCode = data;
|
|
|
|
|
this.workplaceId = this.$route.query.workplaceId
|
|
|
|
|
this.handleSlotCodeScan()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
computed: {
|
|
|
|
@ -948,10 +975,18 @@ export default {
|
|
|
|
|
document.addEventListener('visibilitychange', this.handleVisibilityChange)
|
|
|
|
|
this.handleVisibilityChange()
|
|
|
|
|
|
|
|
|
|
EventBus.$on('sendData', (data) => {
|
|
|
|
|
this.handleData(data.message)
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
this.workplaceId = this.$route.query.workplaceId
|
|
|
|
|
// this.selectSysParam()
|
|
|
|
|
if (!isBlank(this.message)){
|
|
|
|
|
this.scanCode = this.message
|
|
|
|
|
this.handleSlotCodeScan()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
beforeDestroy() {
|
|
|
|
|
window.removeEventListener('gwsh', this.handleRecCodesEvent)
|
|
|
|
@ -960,6 +995,7 @@ export default {
|
|
|
|
|
console.log('工位剔除Connection closed.')
|
|
|
|
|
}
|
|
|
|
|
document.removeEventListener('visibilitychange', this.handleVisibilityChange)
|
|
|
|
|
EventBus.$off('sendData');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|