1/8 码校验优化1.0

20240912_adapter
wangwei 3 months ago
parent d19ca3a78d
commit cb55a2b6c4

@ -128,7 +128,7 @@
:total="resultTotal" :total="resultTotal"
:limit.sync="codeQuery.limit" :limit.sync="codeQuery.limit"
:page.sync="codeQuery.page" :page.sync="codeQuery.page"
@pagination="getResultDetailList" @pagination="getPage()"
></pagination> ></pagination>
<!-- 在表格下方添加说明 --> <!-- 在表格下方添加说明 -->
@ -427,6 +427,10 @@ export default {
// false // false
return false return false
}, },
getPage(){
this.codeQuery.selectType = 1
this.getResultDetailList()
},
getResultDetailList() { getResultDetailList() {
this.codeQuery.billNo = this.orderData.billNo this.codeQuery.billNo = this.orderData.billNo
getCodeEndList(this.codeQuery).then((res) => { getCodeEndList(this.codeQuery).then((res) => {

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

Loading…
Cancel
Save