From 2b2d292c1a274aa95aab8c2ac20530e54a503923 Mon Sep 17 00:00:00 2001 From: 张磊磊 <201175954@qq.com> Date: 星期三, 08 十一月 2023 10:39:32 +0800 Subject: [PATCH] 对接数据 web接口 --- web/src/views/LayoutIndex/components/LayoutAside.vue | 14 +++++++++++--- 1 files changed, 11 insertions(+), 3 deletions(-) diff --git a/web/src/views/LayoutIndex/components/LayoutAside.vue b/web/src/views/LayoutIndex/components/LayoutAside.vue index 8d29a32..04e1cc0 100644 --- a/web/src/views/LayoutIndex/components/LayoutAside.vue +++ b/web/src/views/LayoutIndex/components/LayoutAside.vue @@ -26,7 +26,11 @@ <span>{{three.meta.title}}</span> </template> <template v-for="items in three.children"> - <el-menu-item :index="items.path" :key="items.name">{{items.meta.title}}</el-menu-item> + <el-menu-item + :index="items.path" + :key="items.name"> + {{items.meta.title}} + </el-menu-item> </template> </el-submenu> </template> @@ -133,8 +137,8 @@ /deep/ .el-menu-item.is-active { padding-left: 45px!important; position: relative; - margin-left: 10px; - color: #3DC8FF; + // margin-left: 10px; + color: #EAEAEA; border-radius: 3px; background: linear-gradient( 90deg, @@ -154,6 +158,10 @@ } } +.three_item { + background: #0B5274 !important; +} + /deep/ .el-submenu .el-submenu__title:hover { color: #3DC8FF; background: rgba(57,181,254,0.7) !important; -- Gitblit v1.9.3