From 04a82182cac5b0d1e9b9aaf730d32f96575db21a Mon Sep 17 00:00:00 2001 From: lijuncheng Date: Thu, 19 Sep 2024 16:23:29 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0await?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/fg/receiptByPlan.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/fg/receiptByPlan.vue b/src/pages/fg/receiptByPlan.vue index 997ed820..9cd7eca8 100644 --- a/src/pages/fg/receiptByPlan.vue +++ b/src/pages/fg/receiptByPlan.vue @@ -306,14 +306,14 @@ //创建上架申请 if(this.dataContent.putAwayRequestSwitch){ if(list.length>0&&list[0].requestNumber){ - createPutawayRequestByPlan(list[0].requestNumber) + await createPutawayRequestByPlan(list[0].requestNumber) } } //创建检验申请 if(this.dataContent.putAwayInspectSwitch){ if(list.length>0&&list[0].requestNumber){ - createInspectRequestByPlan(list[0].requestNumber) + await createInspectRequestByPlan(list[0].requestNumber) } }