From 3d8cd11fb47cc4d76fa31645ecf1a5563804e4f8 Mon Sep 17 00:00:00 2001 From: zhaoyiran Date: Wed, 6 Nov 2024 09:12:24 +0800 Subject: [PATCH] =?UTF-8?q?YT-699=E9=A2=84=E7=94=9F=E4=BA=A7=E6=94=B6?= =?UTF-8?q?=E8=B4=A7=E7=94=B3=E8=AF=B7=EF=BC=8C=E9=87=8D=E6=96=B0=E6=89=93?= =?UTF-8?q?=E5=BC=80=E7=BC=96=E8=BE=91=E4=BF=AE=E6=94=B9=EF=BC=8C=E7=94=9F?= =?UTF-8?q?=E4=BA=A7=E7=BA=BF=E4=BB=A3=E7=A0=81=E5=BA=94=E4=B8=8D=E8=83=BD?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../productreceipt/productreceiptRequestMain/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/wms/productionManage/productreceipt/productreceiptRequestMain/index.vue b/src/views/wms/productionManage/productreceipt/productreceiptRequestMain/index.vue index 60bdc7428..3944df0be 100644 --- a/src/views/wms/productionManage/productreceipt/productreceiptRequestMain/index.vue +++ b/src/views/wms/productionManage/productreceipt/productreceiptRequestMain/index.vue @@ -633,7 +633,7 @@ const openForm = async (type: string, row?: number) => { if (type == 'update') { // 修改 tableform 属性 ProductreceiptRequestMain.allSchemas.formSchema.map((itemColumns) => { - if (itemColumns.field == 'workshopCode') { + if (itemColumns.field == 'workshopCode' || itemColumns.field == 'productionLineCode') { itemColumns.componentProps.isSearchList = false itemColumns.componentProps.disabled = true } @@ -641,7 +641,7 @@ const openForm = async (type: string, row?: number) => { } else { // 修改 tableform 属性 ProductreceiptRequestMain.allSchemas.formSchema.map((itemColumns) => { - if (itemColumns.field == 'workshopCode') { + if (itemColumns.field == 'workshopCode' || itemColumns.field == 'productionLineCode') { itemColumns.componentProps.isSearchList = true itemColumns.componentProps.disabled = false }