From e3426555e49a010f221f0a375efebcdcea54461a Mon Sep 17 00:00:00 2001 From: long <18782126717@163.com> Date: Wed, 15 Feb 2023 09:13:15 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=85=A5=E5=BA=93=E6=96=B0?= =?UTF-8?q?=E5=A2=9E=E6=98=AF=E9=94=99=E8=AF=AF=E6=8F=90=E7=A4=BA=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/activiti/form/ProcessMaterialWarehousingForm.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/views/activiti/form/ProcessMaterialWarehousingForm.vue b/src/views/activiti/form/ProcessMaterialWarehousingForm.vue index 35d80cc..6927b8a 100644 --- a/src/views/activiti/form/ProcessMaterialWarehousingForm.vue +++ b/src/views/activiti/form/ProcessMaterialWarehousingForm.vue @@ -569,7 +569,7 @@ params.materialGroup=formData.processMaterialWarehousingListList[i].materialGroup; params.materialNumber=formData.processMaterialWarehousingListList[i].materialNumber; params.planId=this.processUdgetPlanIds; - this.getAction(this.url.queryQuantityByPlanId,params).then((res) => { + await this.getAction(this.url.queryQuantityByPlanId,params).then((res) => { if (res.success) { if(res.result!=null){ this.planQuantity=res.result; @@ -673,10 +673,11 @@ params.materialGroup=formData.processMaterialWarehousingListList[i].materialGroup; params.materialNumber=formData.processMaterialWarehousingListList[i].materialNumber; params.planId=this.processUdgetPlanIds; - this.getAction(this.url.queryQuantityByPlanId,params).then((res) => { + await this.getAction(this.url.queryQuantityByPlanId,params).then((res) => { if (res.success) { if(res.result!=null){ this.planQuantity=res.result; + console.log('表单回显数据0', this.planQuantity) } } }) @@ -686,6 +687,7 @@ if (res.success) { if(res.result!=null){ this.warehousingQuantity=res.result; + console.log('表单回显数据1', this.warehousingQuantity) } } })