From b6332f2cd592dad7de703a85c60a50f2d9d34e75 Mon Sep 17 00:00:00 2001
From: yuxc <yuxc@vci-tech.com>
Date: 星期三, 25 十二月 2024 16:51:56 +0800
Subject: [PATCH] 修改数据库表前缀PLATFORMBTM_为PBT_,PLATFORMLT_为PLT_

---
 Source/plt-web/plt-web-ui/src/page/index/sidebar/sidebarItem.vue |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Source/plt-web/plt-web-ui/src/page/index/sidebar/sidebarItem.vue b/Source/plt-web/plt-web-ui/src/page/index/sidebar/sidebarItem.vue
index 1d0f1ee..3762f5b 100644
--- a/Source/plt-web/plt-web-ui/src/page/index/sidebar/sidebarItem.vue
+++ b/Source/plt-web/plt-web-ui/src/page/index/sidebar/sidebarItem.vue
@@ -14,7 +14,7 @@
                   :key="item[labelKey]"
                   :index="item[pathKey]">
         <template slot="title">
-          <i :class="item[iconKey]"></i>
+          <i :class="item[iconKey]" style="margin-right: 10px"></i>
           <span slot="title"
                 :class="{'el-menu--display':collapse && first}">{{ generateTitle(item) }}</span>
         </template>
@@ -24,7 +24,7 @@
                         :class="{'is-active':vaildActive(child)}"
                         :index="child[pathKey],cindex"
                         @click="open(child)">
-            <i :class="child[iconKey]"></i>
+            <i :class="child[iconKey]" style="margin-right: 10px"></i>
             <span slot="title">{{ generateTitle(child) }}</span>
           </el-menu-item>
           <sidebar-item v-else

--
Gitblit v1.9.3