From 631a6c16b81a10956fd2b4624c1fe69727de20be Mon Sep 17 00:00:00 2001 From: yufei_wang <2267742828@qq.com> Date: Sun, 29 Sep 2024 13:08:53 +0800 Subject: [PATCH] =?UTF-8?q?HL-6146=E9=80=89=E6=8B=A9=E7=94=9F=E4=BA=A7?= =?UTF-8?q?=E7=BA=BF=E6=97=B6=E6=8A=8A=E5=B7=A5=E4=BD=8D=E4=BB=A3=E7=A0=81?= =?UTF-8?q?=E6=B8=85=E7=A9=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../productredress/productredressRequestMain/index.vue | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/views/wms/productionManage/productredress/productredressRequestMain/index.vue b/src/views/wms/productionManage/productredress/productredressRequestMain/index.vue index c445b8233..afc628a9d 100644 --- a/src/views/wms/productionManage/productredress/productredressRequestMain/index.vue +++ b/src/views/wms/productionManage/productredress/productredressRequestMain/index.vue @@ -171,6 +171,16 @@ const searchTableSuccess = (formField, searchField, val, formRef, type, row ) => } else { const setV = {} setV[formField] = val[0][searchField] + if('workshopCode'==formField){ + //车间代码 + setV['productionLineCode'] = '' + setV['workStationCode'] = '' + tableData.value = [] + }else if('productionLineCode'==formField){ + //生产线 + setV['workStationCode'] = '' + tableData.value = [] + } formRef.setValues(setV) } })