From 20461c34467a9fd676063853f638abd977e38de9 Mon Sep 17 00:00:00 2001
From: 田源 <lastanimals@163.com>
Date: 星期三, 06 十二月 2023 18:56:38 +0800
Subject: [PATCH] 业务类型树修改(未完成)

---
 Source/UBCS-WEB/src/views/modeling/Business.vue |   11 +++++++----
 1 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/Source/UBCS-WEB/src/views/modeling/Business.vue b/Source/UBCS-WEB/src/views/modeling/Business.vue
index c9fcc0e..eef4952 100644
--- a/Source/UBCS-WEB/src/views/modeling/Business.vue
+++ b/Source/UBCS-WEB/src/views/modeling/Business.vue
@@ -14,17 +14,20 @@
       </div>
     </el-header>
     <el-container>
-      <el-aside width="240px">
+      <el-aside style="width:250px">
         <basic-container class="businessTreeContainer">
-          <p style="margin-top: 10px;font-weight: 570;font-size: 19px">{{ treeOption.title }}</p>
-          <avue-tree id="basic" :data="treeData" :option="treeOption" class="businessTree" @node-click="nodeClick">
+          <div class="app">
+            <p style="margin-top: 10px;font-weight: 570;font-size: 19px">{{ treeOption.title }}</p>
+            <avue-tree id="basic" :data="treeData" :option="treeOption" class="businessTree" @node-click="nodeClick">
             <span slot-scope="{ node, data }" class="el-tree-node__label">
               <span>
                 <i :class="(node || {}).level === 2 ? 'el-icon-star-off' : 'el-icon-folder-opened'"></i>
                 {{ (node || {}).label }}
               </span>
             </span>
-          </avue-tree>
+            </avue-tree>
+          </div>
+
         </basic-container>
       </el-aside>
       <el-container>

--
Gitblit v1.9.3