From 52ebe60fb292a639d462d74dd480328dec4e5e35 Mon Sep 17 00:00:00 2001 From: zhang_li <2235006734@qqq.com> Date: Tue, 19 Nov 2024 09:20:06 +0800 Subject: [PATCH] =?UTF-8?q?YT-785=E5=88=B6=E5=93=81=E5=9B=9E=E6=94=B6?= =?UTF-8?q?=E7=94=B3=E8=AF=B7=E7=BC=96=E8=BE=91=E9=97=AE=E9=A2=98=EF=BC=9A?= =?UTF-8?q?1.=E5=B7=A5=E4=BD=8D=E4=BB=A3=E7=A0=81=E4=B8=8D=E5=BA=94?= =?UTF-8?q?=E8=AF=A5=E5=8F=AF=E4=BB=A5=E7=BC=96=E8=BE=91=202.=E5=A4=87?= =?UTF-8?q?=E6=B3=A8=E5=80=BC=E4=BF=9D=E5=AD=98=E4=B8=8D=E4=BD=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../productredress/productredressRequestMain/index.vue | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/views/wms/productionManage/productredress/productredressRequestMain/index.vue b/src/views/wms/productionManage/productredress/productredressRequestMain/index.vue index 5a8d7379d..9aca36df4 100644 --- a/src/views/wms/productionManage/productredress/productredressRequestMain/index.vue +++ b/src/views/wms/productionManage/productredress/productredressRequestMain/index.vue @@ -360,7 +360,12 @@ const openForm =async (type: string, row?: number) => { itemColumns.componentProps.isSearchList = false itemColumns.componentProps.disabled = true } + if(itemColumns.field == 'workStationCode') { + itemColumns.componentProps.isSearchList = false + itemColumns.componentProps.disabled = true + } }) + } else { // 修改 tableform 属性 ProductredressRequestMain.allSchemas.formSchema.map(itemColumns => { @@ -368,6 +373,10 @@ const openForm =async (type: string, row?: number) => { itemColumns.componentProps.isSearchList = true itemColumns.componentProps.disabled = false } + if(itemColumns.field == 'workStationCode') { + itemColumns.componentProps.isSearchList = true + itemColumns.componentProps.disabled = false + } }) } formRef.value.open(type, row)