From c4784b72ee9dfab46286cb6844da7102a64c9834 Mon Sep 17 00:00:00 2001 From: "pref_mail@163.com" Date: Wed, 27 Dec 2023 16:22:09 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=AD=BE=E6=94=B6=E5=A4=8D?= =?UTF-8?q?=E5=90=88=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../distributionDeliveryListedt.vue | 20 ++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/src/views/distribution/deliverylist/distributionDeliveryListedt.vue b/src/views/distribution/deliverylist/distributionDeliveryListedt.vue index d7f78db9..74db694e 100644 --- a/src/views/distribution/deliverylist/distributionDeliveryListedt.vue +++ b/src/views/distribution/deliverylist/distributionDeliveryListedt.vue @@ -714,6 +714,7 @@ export default { SignForPhotos: [], reservationId: null, //当前行的ID windowHeight: null, + CheckStore:null, columnList: [ { prop: 'trainNumber', @@ -3284,8 +3285,10 @@ export default { this.dialogImageUrlE = uploadFile.url; this.dialogVisibleE = true; }, - + // 复核签收确认弹窗 submitForm() { + console.log(this.CheckStore,'要处理的值'); + // console.log('--------------->this.signtitle', this.signtitle); // console.log('--------------->this.signtitle', this.submitForm); let row = {}; @@ -3298,7 +3301,8 @@ export default { }; // 提交图片处理 //最后提交 - row.reservationId = this.reservationId; + + row.reservationId = this.CheckStore.reservationId; // row.clerkSignPictures = this.signform.clerkSignPictures; row.clerkSignRemarks = this.TcForm.clerkSignRemarks; //备注 row.deliveryId = this.deliveryId; @@ -3522,14 +3526,20 @@ export default { }, handleSign(row) { console.log('签收>>>>>>>>>>', row); - console.log(row.id, '复合签收'); - $_getDetail({ id: row.id }).then(res => { + console.log(row.signId, '复合签收'); + $_getDetail({ id: row.signId }).then(res => { console.log(res, '复合返回值'); + if(res.data.data){ + this.CheckStore=res.data.data + console.log(this.CheckStore,'data'); + console.log(res.data.data,'res'); + } + }); this.signtitle = '复核签收'; // this.view = true; this.signform = row; - this.signBox = true; + this.signBox = true;//开启复合弹窗 // this.wid= row.id // this.getWrapdetails(this.wpage) },