mirror of
https://gitee.com/niucloud-team/niucloud-admin.git
synced 2025-12-14 11:42:48 +00:00
109 lines
3.7 KiB
Vue
109 lines
3.7 KiB
Vue
<template>
|
|
<el-container class="w-[200px] h-screen layout-aside flex flex-col">
|
|
<el-header class="logo-wrap flex items-center justify-center h-[64px]">
|
|
<template v-if="webSite">
|
|
<img class="max-h-[40px] max-w-[70%]" v-if="webSite.logo" :src="img(webSite.logo)" alt="">
|
|
<img class="max-h-[40px] max-w-[70%]" src="@/app/assets/images/login_logo.png" alt="" v-else>
|
|
</template>
|
|
</el-header>
|
|
<el-main class="menu-wrap">
|
|
<el-scrollbar>
|
|
<el-menu :default-active="route.name" :router="true" class="aside-menu h-full" unique-opened="true" :collapse="systemStore.menuIsCollapse" >
|
|
<menu-item v-for="(route, index) in menuData" :routes="route" :route-path="route.path" :key="index" />
|
|
</el-menu>
|
|
<div class="h-[48px]"></div>
|
|
</el-scrollbar>
|
|
</el-main>
|
|
</el-container>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
import { useRoute } from 'vue-router'
|
|
import useSystemStore from '@/stores/modules/system'
|
|
import useUserStore from '@/stores/modules/user'
|
|
import menuItem from './menu-item.vue'
|
|
import { img } from '@/utils/common'
|
|
import { findFirstValidRoute } from '@/router/routers'
|
|
import { getWebConfig } from "@/app/api/sys"
|
|
|
|
const systemStore = useSystemStore()
|
|
const userStore = useUserStore()
|
|
const route = useRoute()
|
|
const routers = userStore.routers
|
|
const addonIndexRoute = userStore.addonIndexRoute
|
|
const webSite = ref(null)
|
|
|
|
const menuData = ref<Record<string, any>[]>([])
|
|
const addonRouters: Record<string, any> = {}
|
|
|
|
getWebConfig().then(({ data }) => {
|
|
webSite.value = data
|
|
})
|
|
|
|
routers.forEach(item => {
|
|
item.original_name = item.name
|
|
if (item.meta.addon == '') {
|
|
if (item.children && item.children.length) {
|
|
item.name = findFirstValidRoute(item.children)
|
|
}
|
|
menuData.value.push(item)
|
|
} else if (item.meta.addon != '' && systemStore?.apps.length == 1 && systemStore?.apps[0].key == item.meta.addon) {
|
|
if (item.children) {
|
|
item.children.forEach((citem: Record<string, any>) => {
|
|
citem.original_name = citem.name
|
|
if (citem.children && citem.children.length) {
|
|
citem.name = findFirstValidRoute(citem.children)
|
|
}
|
|
})
|
|
menuData.value.unshift(...item.children)
|
|
} else {
|
|
menuData.value.unshift(item)
|
|
}
|
|
} else {
|
|
addonRouters[item.meta.addon] = item
|
|
}
|
|
})
|
|
|
|
// 多应用时将应用插入菜单
|
|
if (systemStore?.apps.length > 1) {
|
|
const routers:Record<string, any>[] = []
|
|
systemStore?.apps.forEach((item: Record<string, any>) => {
|
|
const data = {
|
|
path: addonRouters[item.key] ? addonRouters[item.key].path : '',
|
|
meta: {
|
|
icon: addonRouters[item.key]?.meta.icon || 'element-Setting',
|
|
addon: item.key,
|
|
title: item.title,
|
|
app: item.app,
|
|
show: true
|
|
},
|
|
original_name: item.key,
|
|
name: addonIndexRoute[item.key]
|
|
}
|
|
if (addonRouters[item.key] && addonRouters[item.key].children) data.children = addonRouters[item.key].children
|
|
routers.push(data)
|
|
})
|
|
menuData.value.unshift(...routers)
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.menu-wrap {
|
|
padding: 0!important;
|
|
|
|
.el-menu {
|
|
border-right: 0!important;
|
|
|
|
.el-menu-item, .el-sub-menu__title {
|
|
--el-menu-item-height: 40px;
|
|
}
|
|
|
|
.el-sub-menu .el-menu-item {
|
|
--el-menu-sub-item-height: 40px;
|
|
--el-menu-sub-item-height: 40px;
|
|
}
|
|
}
|
|
}
|
|
</style>
|