1.修复垛位查询由于没有板材时垛位不显示的问题

2.优化页面显示,显示语音识别结果
3.优化上料查询结果排序,使用工单号正序排序
master
董哲奇 5 months ago
parent 34efee31bd
commit 410ba59ccc

@ -45,9 +45,12 @@ export default {
// this.hide() // this.hide()
// },10000) // },10000)
// } // }
let msg
if (data.code===3000&&data.msg.deviceId===this.deviceId){
msg=`识别结果:${data.msg.orderNumber}`
}
if (data.code===3002&&data.msg.deviceId===this.deviceId){ if (data.code===3002&&data.msg.deviceId===this.deviceId){
let msg
switch (data.msg.actionType){ switch (data.msg.actionType){
case this.commandEnum.大船大船: case this.commandEnum.大船大船:
this.msgFlag=true this.msgFlag=true
@ -73,10 +76,9 @@ export default {
this.hide() this.hide()
},10000) },10000)
},59000) },59000)
this.msgFlag&&this.show()
this.msgFlag&&this.onMsg(msg)
} }
this.msgFlag&&this.show()
this.msgFlag&&this.onMsg(msg)
}, },
complete(){ complete(){
if (data.code===3000&&data.msg.deviceId===this.$props.deviceId){ if (data.code===3000&&data.msg.deviceId===this.$props.deviceId){

Loading…
Cancel
Save