From 081e9b887f0e4b503fbe5f6d596c278e67508fbe Mon Sep 17 00:00:00 2001 From: yufei_wang <2267742828@qq.com> Date: Mon, 9 Sep 2024 13:42:23 +0800 Subject: [PATCH] =?UTF-8?q?HL-5833=E8=B0=83=E6=95=B4=E7=BA=BF=E8=BE=B9?= =?UTF-8?q?=E5=8E=9F=E6=96=99=E6=B6=88=E8=80=97=E9=80=BB=E8=BE=91=EF=BC=8C?= =?UTF-8?q?=E5=AE=8C=E5=B7=A5=E6=94=B6=E8=B4=A7=E6=97=B6=E4=B8=8D=E5=86=8D?= =?UTF-8?q?=E8=87=AA=E5=8A=A8=E7=94=9F=E6=88=90=E5=8E=9F=E6=96=99=E6=B6=88?= =?UTF-8?q?=E8=80=97=E5=8D=95=E6=8D=AE=E5=92=8C=E6=B6=88=E8=80=97=E7=BA=BF?= =?UTF-8?q?=E8=BE=B9=E5=8E=9F=E6=96=99=E5=BA=93=E5=AD=98=EF=BC=88=E9=80=9A?= =?UTF-8?q?=E8=BF=87=E5=BC=80=E5=85=B3=E6=8E=A7=E5=88=B6=EF=BC=89=EF=BC=8C?= =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=B8=BA=E9=80=9A=E8=BF=87=E6=8E=A5=E5=8F=A3?= =?UTF-8?q?=E4=BB=8EQAD=E6=8E=A5=E6=94=B6=E7=BA=BF=E8=BE=B9=E5=8E=9F?= =?UTF-8?q?=E6=96=99=E6=B6=88=E8=80=97=E6=95=B0=E9=87=8F=E5=90=8E=EF=BC=8C?= =?UTF-8?q?=E6=8C=89=E7=85=A7FIFO=E5=8E=9F=E5=88=99=E6=89=A3=E5=87=8F?= =?UTF-8?q?=E7=BA=BF=E8=BE=B9=E5=BA=93=E5=AD=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../wms/agvManage/backflushDetailbQad/index.vue | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/views/wms/agvManage/backflushDetailbQad/index.vue b/src/views/wms/agvManage/backflushDetailbQad/index.vue index eb4b971fd..e1bda5667 100644 --- a/src/views/wms/agvManage/backflushDetailbQad/index.vue +++ b/src/views/wms/agvManage/backflushDetailbQad/index.vue @@ -152,6 +152,19 @@ const buttonTableClick = async (val, row) => { /** 添加/修改操作 */ const basicFormRef = ref() const openForm = (type: string, row?: any) => { + if(type=='update'){ + //编辑 + BackflushDetailbQad.allSchemas.formSchema.forEach(item=>{ + if(item.field != 'status'){ + item.componentProps.disabled = true + } + }) + }else{ + BackflushDetailbQad.allSchemas.formSchema.forEach(item=>{ + item.componentProps.disabled = false + + }) + } basicFormRef.value.open(type, row) }