diff --git a/src/views/collect/DealOrderPre.vue b/src/views/collect/DealOrderPre.vue index df804186..8fe53e7c 100644 --- a/src/views/collect/DealOrderPre.vue +++ b/src/views/collect/DealOrderPre.vue @@ -37,7 +37,7 @@ 选预验收入库单 @@ -254,6 +254,7 @@ {{ formData.shipperName }} {{ formData.fromCorpName }} + {{ formData.preInBillNo }} {{ formData.busTypeName }} {{ formData.fromType }} {{ formData.billTime }} @@ -473,6 +474,7 @@ export default { }, data() { return { + checkPreInArray:[], tabsName: [ 'prescribeOriginPanel', 'prescribeCodePanel1', @@ -515,6 +517,7 @@ export default { busType: null, workPlaceCode: null, fromCorp: null, + preInBillNo: null, confirmFinish: false, }, selectPrescriptionVisible: false, @@ -592,6 +595,13 @@ export default { } }, methods: { + //接收预验单传值 + giveselectbox(val) { + this.checkPreInArray = JSON.parse(JSON.stringify(val)); + if (this.checkPreInArray != null) { + this.formData.preInBillNo = this.checkPreInArray.join(","); + } + }, //关闭预选单弹框 closeDialogtwo() { this.selectorder = false; @@ -1110,6 +1120,7 @@ export default { code: this.filterQuery.code.trim(), insert: this.formData.insert, busType: this.formData.busType, + preInBillNo: this.formData.preInBillNo, }; tagCode(tagQuery).then(res => { this.loading = false @@ -1544,6 +1555,7 @@ export default { shipper: null, fromCorp: null, }; + this.checkPreInArray = [] this.selectSysParam() this.curRow = null this.formData.confirmFinish = false;