key1_beacon_back/src/layout/components/Sidebar/index.vue
2023-06-05 09:41:28 +08:00

53 lines
1.7 KiB
Vue

<template>
<el-aside :data-theme="sideTheme" class="sidebar sidebar-bg" :class="{ 'has-logo': showLogo }">
<logo v-if="showLogo" class="sidebar-bg" :collapse="isCollapse" />
<el-scrollbar wrap-class="scrollbar-wrapper">
<el-menu :default-active="activeMenu" :collapse="isCollapse" :unique-opened="true" :active-text-color="theme"
:collapse-transition="false" background-color="transparent" mode="vertical">
<sidebar-item v-for="(route, index) in sidebarRouters" :key="route.path + index" :item="route"
:base-path="route.path" />
</el-menu>
</el-scrollbar>
</el-aside>
</template>
<script setup>
import Logo from './Logo'
import SidebarItem from './SidebarItem'
import useAppStore from '@/store/modules/app'
import useSettingsStore from '@/store/modules/settings'
import usePermissionStore from '@/store/modules/permission'
const route = useRoute()
const appStore = useAppStore()
const settingsStore = useSettingsStore()
const permissionStore = usePermissionStore()
const sidebarRouters = computed(() => permissionStore.sidebarRouters)
const showLogo = computed(() => settingsStore.sidebarLogo)
const sideTheme = computed(() => settingsStore.sideTheme)
const theme = computed(() => settingsStore.theme)
const isCollapse = computed(() => !appStore.sidebar.opened)
const device = computed(() => appStore.device)
const activeMenu = computed(() => {
const { meta, path } = route
// if set path, the sidebar will highlight the path you set
if (meta.activeMenu) {
return meta.activeMenu
}
return path
})
watch(route, (val) => {
if (device.value === 'mobile') {
appStore.closeSideBar()
}
})
</script>
<style lang="scss" scoped>
// 菜单背景颜色
.sidebar-bg {
// background-color: #2b333e !important;
}
</style>