|
|
|
@ -491,7 +491,7 @@ export default {
|
|
|
|
|
if (data.status == 1) {
|
|
|
|
|
this.scanResultType = 'success'
|
|
|
|
|
this.result = this.result + (isBlank(this.result) ? '' : ';') + vailCodeResultResponses[i].code + ':' + vailCodeResultResponses[i].sucMsg
|
|
|
|
|
} else if (data.status == 2) {
|
|
|
|
|
} else if (data.status == 2 || data.status == 3) {
|
|
|
|
|
this.errResult = this.errResult + '\n' + vailCodeResultResponses[i].code + ':' + vailCodeResultResponses[i].errMsg
|
|
|
|
|
} else if (data.status == 5) {
|
|
|
|
|
this.scanResultType = 'warning'
|
|
|
|
@ -557,7 +557,7 @@ export default {
|
|
|
|
|
commit() {
|
|
|
|
|
commitCheckCodeOrder(this.filterQuery).then(res => {
|
|
|
|
|
if (res.code == 20000) {
|
|
|
|
|
this.init
|
|
|
|
|
this.init()
|
|
|
|
|
this.$message.success('校验完成')
|
|
|
|
|
} else {
|
|
|
|
|
// if (this.orderData.checkCodeConfirm == 1) {
|
|
|
|
@ -584,6 +584,10 @@ export default {
|
|
|
|
|
this.placeholder = '请输入单据号进行扫码校验'
|
|
|
|
|
this.scanTitle = '扫码结果:'
|
|
|
|
|
this.curRow = null
|
|
|
|
|
this.successVisible = true
|
|
|
|
|
this.errVisible = false
|
|
|
|
|
this.errResult = ''
|
|
|
|
|
this.result = '\n'
|
|
|
|
|
this.orderQuery = {
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 10,
|
|
|
|
@ -610,6 +614,7 @@ export default {
|
|
|
|
|
if (this.$route.query.busType != null) {
|
|
|
|
|
this.busType = this.$route.query.busType
|
|
|
|
|
}
|
|
|
|
|
this.panelALive = false
|
|
|
|
|
},
|
|
|
|
|
clear() {
|
|
|
|
|
this.init()
|
|
|
|
|