From 04af966bddb7dfb8e850bf0e314defc83cbe3f4e Mon Sep 17 00:00:00 2001
From: wangting <675591594@qq.com>
Date: 星期三, 20 三月 2024 17:28:30 +0800
Subject: [PATCH] UI上下文展示引擎

---
 Source/ProjectWeb/src/components/dynamic-components/dynamic-form.vue |   16 +++++++++-------
 1 files changed, 9 insertions(+), 7 deletions(-)

diff --git a/Source/ProjectWeb/src/components/dynamic-components/dynamic-form.vue b/Source/ProjectWeb/src/components/dynamic-components/dynamic-form.vue
index 3d555d7..3e7b477 100644
--- a/Source/ProjectWeb/src/components/dynamic-components/dynamic-form.vue
+++ b/Source/ProjectWeb/src/components/dynamic-components/dynamic-form.vue
@@ -1,6 +1,7 @@
 <template>
-  <avue-form v-model="form" :option="option">
-    <template v-for="item in slotData" :slot="item.prop + 'Label'">
+  <div class="UI-dynamic" :id="'UI-dynamic-'+areasName+componentVO.oid">
+    <avue-form v-model="form" :option="option">
+      <template v-for="item in slotData" :slot="item.prop + 'Label'">
         <span>
           <span>{{ item.label }} </span>
           <el-tooltip
@@ -13,11 +14,12 @@
             <i class="el-icon-star-on" style="font-size: 17px !important; color: red;vertical-align: baseline;"></i>
           </el-tooltip>
         </span>
-    </template>
-    <template slot="menuForm">
-      <dynamic-button type="form" :butttonList="componentVO.buttons" @buttonClick="buttonClick"></dynamic-button>
-    </template>
-  </avue-form>
+      </template>
+      <template slot="menuForm">
+        <dynamic-button type="form" :butttonList="componentVO.buttons" @buttonClick="buttonClick"></dynamic-button>
+      </template>
+    </avue-form>
+  </div>
 </template>
 
 <script>

--
Gitblit v1.9.3