diff --git a/src/views/collect/DealOrder.vue b/src/views/collect/DealOrder.vue index 0b6059c1..40d035ed 100644 --- a/src/views/collect/DealOrder.vue +++ b/src/views/collect/DealOrder.vue @@ -794,7 +794,7 @@ export default { enterKey() { if (this.scanCode.includes("DMOENTER")) { - if (this.orderData.billNo == null) { + if (this.formData.billNo == null) { this.$message.error('请先选择单据') }else { this.confirmFinishOrder() @@ -802,7 +802,7 @@ export default { this.scanCode = '' return }else if (this.scanCode.includes("DMOCANCEL")) { - if (this.orderData.billNo == null) { + if (this.formData.billNo == null) { this.$message.error('请先选择单据') }else { this.cancelOrder() @@ -810,7 +810,7 @@ export default { this.scanCode = '' return }else if (this.scanCode.includes("DMODEL")) { - if (this.orderData.billNo == null) { + if (this.formData.billNo == null) { this.$message.error('请先选择单据') }else { this.deleteCode()