|
@@ -2,22 +2,48 @@
|
|
|
<template v-if="!item.hidden">
|
|
|
<template v-if="showSidebarItem(item.children, item)">
|
|
|
<Link v-if="onlyOneChild.meta" :to="resolvePath(onlyOneChild.path)">
|
|
|
- <el-menu-item :index="resolvePath(onlyOneChild.path)" :class="{ 'submenu-title-noDropdown': !isNest }">
|
|
|
- <!-- <item :meta="onlyOneChild.meta || item.meta" /> -->
|
|
|
- <div v-if="onlyOneChild.meta.elSvgIcon || item.meta.elSvgIcon" class="menuIcon" :class="onlyOneChild.path"></div>
|
|
|
- <template #title>
|
|
|
- <div :class="onlyOneChild.meta.elSvgIcon || item.meta.elSvgIcon ? 'menuText' : ''">{{ onlyOneChild.meta?.title }}</div>
|
|
|
- </template>
|
|
|
- </el-menu-item>
|
|
|
+ <el-menu-item
|
|
|
+ :index="resolvePath(onlyOneChild.path)"
|
|
|
+ :class="{ 'submenu-title-noDropdown': !isNest }"
|
|
|
+ >
|
|
|
+ <!-- <item :meta="onlyOneChild.meta || item.meta" /> -->
|
|
|
+ <div
|
|
|
+ v-if="onlyOneChild.meta.elSvgIcon || item.meta.elSvgIcon"
|
|
|
+ class="menuIcon"
|
|
|
+ :class="onlyOneChild.path"
|
|
|
+ ></div>
|
|
|
+ <template #title>
|
|
|
+ <div
|
|
|
+ :class="
|
|
|
+ onlyOneChild.meta.elSvgIcon || item.meta.elSvgIcon
|
|
|
+ ? 'menuText'
|
|
|
+ : ''
|
|
|
+ "
|
|
|
+ >
|
|
|
+ {{ onlyOneChild.meta?.title }}
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-menu-item>
|
|
|
</Link>
|
|
|
</template>
|
|
|
- <el-sub-menu v-else ref="subMenu" :index="resolvePath(item.path)" popper-append-to-body>
|
|
|
+ <el-sub-menu
|
|
|
+ v-else
|
|
|
+ ref="subMenu"
|
|
|
+ :index="resolvePath(item.path)"
|
|
|
+ popper-append-to-body
|
|
|
+ >
|
|
|
<template v-if="item.meta" #title>
|
|
|
- <div class="menuIcon" :class="item.path.replace('/','')"></div>
|
|
|
+ <div class="menuIcon" :class="item.path.replace('/', '')"></div>
|
|
|
<!-- <item :meta="item.meta" /> -->
|
|
|
<span class="menuText">{{ item.meta.title }}</span>
|
|
|
</template>
|
|
|
- <SidebarItem v-for="child in item.children" :key="child.path" :is-nest="true" :item="child" :base-path="resolvePath(child.path)" />
|
|
|
+ <SidebarItem
|
|
|
+ v-for="child in item.children"
|
|
|
+ :key="child.path"
|
|
|
+ :is-nest="true"
|
|
|
+ :item="child"
|
|
|
+ :base-path="resolvePath(child.path)"
|
|
|
+ />
|
|
|
</el-sub-menu>
|
|
|
</template>
|
|
|
</template>
|
|
@@ -114,4 +140,7 @@ const resolvePath = (routePath: string) => {
|
|
|
.systemSettings {
|
|
|
background-image: url("@/assets/menus/ic_system_setting_nav.png");
|
|
|
}
|
|
|
+.statisticalanalysis {
|
|
|
+ background-image: url("@/assets/menus/ic_statistics_nav.png");
|
|
|
+}
|
|
|
</style>
|