From 26e5c1cdad65881f7fdccb79fe15db713e0b3cc5 Mon Sep 17 00:00:00 2001 From: yuxc <yuxc@vci-tech.com> Date: 星期二, 30 四月 2024 10:51:29 +0800 Subject: [PATCH] 字段枚举解析修改 --- Source/ProjectWeb/src/components/dynamic-components/index.vue | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/Source/ProjectWeb/src/components/dynamic-components/index.vue b/Source/ProjectWeb/src/components/dynamic-components/index.vue index 3ecb0e5..5f62cb1 100644 --- a/Source/ProjectWeb/src/components/dynamic-components/index.vue +++ b/Source/ProjectWeb/src/components/dynamic-components/index.vue @@ -4,6 +4,7 @@ :uiContext="uiContext" :key="areasName+'table-'+componentVO.oid" :inDialog="inDialog" + :canEdit="canEdit" :componentVO="componentVO" :sourceData="sourceData" :sourceBtmType="sourceBtmType" @@ -19,6 +20,7 @@ :uiContext="uiContext" :key="areasName+'form-'+componentVO.oid" :inDialog="inDialog" + :canEdit="canEdit" :componentVO="componentVO" :sourceData="sourceData" :sourceBtmType="sourceBtmType" @@ -34,6 +36,7 @@ :uiContext="uiContext" :key="areasName+'tree-'+componentVO.oid" :inDialog="inDialog" + :canEdit="canEdit" :componentVO="componentVO" :sourceData="sourceData" :sourceBtmType="sourceBtmType" @@ -47,6 +50,7 @@ :uiBtmType="uiBtmType" :uiContext="uiContext" :inDialog="inDialog" + :canEdit="canEdit" :key="areasName+'custom-'+componentVO.oid" :componentVO="componentVO" :sourceData="sourceData" @@ -86,6 +90,11 @@ type: Boolean, default: false }, + canEdit:{ + //鍐呭鏄惁鍙紪杈� + type:Boolean, + default:false + }, areasName:{ type:String, default:'' -- Gitblit v1.9.3