From ab72a46cf59eaac4710473b73da0d97a6082c5cc Mon Sep 17 00:00:00 2001 From: liwenxuan <1298531568@qq.com> Date: Mon, 20 May 2024 13:33:09 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8Dbug:=E8=A1=A8=E5=8D=95?= =?UTF-8?q?=E8=AE=BE=E8=AE=A1=E9=A1=B5=E9=9D=A2=E4=B8=8D=E5=8F=97=E5=85=B3?= =?UTF-8?q?=E8=81=94=E9=80=89=E9=A1=B9=E6=8E=A7=E5=88=B6=E5=BD=B1=E5=93=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/DesignForm/public/form/form.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/DesignForm/public/form/form.vue b/src/components/DesignForm/public/form/form.vue index a3e59464a..50a9289a4 100644 --- a/src/components/DesignForm/public/form/form.vue +++ b/src/components/DesignForm/public/form/form.vue @@ -395,7 +395,10 @@ provide(constControlChange, ({ key, value, data, tProp, type, attribute }: any) } } console.log(hideFieldArr) - props.formData.config.hideField?.push(...hideFieldArr) + if(formProps.value.type!=5){ + props.formData.config.hideField?.push(...hideFieldArr) + } + });