From e1da115362b9774f9fced834dda4687f1b3806cf Mon Sep 17 00:00:00 2001 From: yufei0306 <13417315+yufei0306@user.noreply.gitee.com> Date: Mon, 22 Apr 2024 10:15:07 +0800 Subject: [PATCH] =?UTF-8?q?SCP=E5=8F=91=E7=A5=A8=E2=80=94=E2=80=94?= =?UTF-8?q?=E4=BE=9B=E5=BA=94=E5=95=86=E5=8F=91=E8=B4=A7=E7=94=B3=E8=AF=B7?= =?UTF-8?q?=EF=BC=8C=E6=89=B9=E6=AC=A1=E4=BF=A1=E6=81=AF=E9=80=9A=E8=BF=87?= =?UTF-8?q?=E9=80=89=E6=8B=A9=E7=AC=AC=E4=B8=80=E6=9D=A1=E7=9A=84=E6=97=A5?= =?UTF-8?q?=E6=9C=9F=EF=BC=8C=E7=94=9F=E6=88=90=E6=89=B9=E6=AC=A1=EF=BC=8C?= =?UTF-8?q?=E9=BB=98=E8=AE=A4=E5=BA=94=E7=94=A8=E5=88=B0=E6=89=80=E6=9C=89?= =?UTF-8?q?=E8=A1=8C=E6=89=B9=E6=AC=A1=E4=BF=A1=E6=81=AF=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../supplierdeliver/supplierdeliverRequestMain/index.vue | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/views/wms/purchasereceiptManage/supplierdeliver/supplierdeliverRequestMain/index.vue b/src/views/wms/purchasereceiptManage/supplierdeliver/supplierdeliverRequestMain/index.vue index 39e1fe719..8a39363c1 100644 --- a/src/views/wms/purchasereceiptManage/supplierdeliver/supplierdeliverRequestMain/index.vue +++ b/src/views/wms/purchasereceiptManage/supplierdeliver/supplierdeliverRequestMain/index.vue @@ -928,6 +928,13 @@ const formFormDateChange = (field, val,row, index) => { if(field == 'produceDate'){ let produceDateStr = formatDate(val,'YYYYMMDD'); row.batch = produceDateStr + tableData.value.forEach(item=>{ + console.log("item.produceDate",item.produceDate) + if(!item.produceDate){ + item.produceDate = val + item.batch = produceDateStr + } + }) } }