From 2fc52c10964ef98247e6e0eeb4be9c85c9d513f6 Mon Sep 17 00:00:00 2001
From: wangting <675591594@qq.com>
Date: 星期五, 22 十一月 2024 11:06:17 +0800
Subject: [PATCH] 修改basic表单组件

---
 Source/plt-web/plt-web-ui/src/views/custom-ui/product.vue |   14 ++++++++++----
 1 files changed, 10 insertions(+), 4 deletions(-)

diff --git a/Source/plt-web/plt-web-ui/src/views/custom-ui/product.vue b/Source/plt-web/plt-web-ui/src/views/custom-ui/product.vue
index a6cd05c..108ce6e 100644
--- a/Source/plt-web/plt-web-ui/src/views/custom-ui/product.vue
+++ b/Source/plt-web/plt-web-ui/src/views/custom-ui/product.vue
@@ -1,6 +1,12 @@
 <template>
   <div style="height: 720px">
     <avue-tree ref="tree" v-loading="treeLoading" :data="treeData" :option="treeOption" @node-click="nodeClick">
+           <span slot-scope="{ node, data }" class="el-tree-node__label">
+               <span style="font-size: 15px">
+                  <i class="el-icon-s-promotion"></i>
+                    {{ (node || {}).label }}
+                </span>
+              </span>
     </avue-tree>
   </div>
 </template>
@@ -60,16 +66,16 @@
     }
   },
   created() {
-    console.log('create');
+    console.log('this.dataStore',this.dataStore);
   },
   methods: {
-    nodeClick(row){
+    nodeClick(row) {
       console.log(row);
       this.$emit("setDataStore", {
         area: 'westAreaInDialog',
         type: 'tree',
-        btmType:'workcontext',
-        dataStore:row
+        btmType: 'workcontext',
+        dataStore: [row]
       });
     }
   }

--
Gitblit v1.9.3