mirror of
https://gitee.com/chu1204505056/vue-admin-beautiful.git
synced 2025-04-05 05:42:45 +08:00
146 lines
3.1 KiB
Vue
146 lines
3.1 KiB
Vue
<template>
|
|
<el-scrollbar :class="{ 'is-collapse': collapse }" class="side-bar-container">
|
|
<vab-logo />
|
|
<el-menu
|
|
:active-text-color="variables['menu-color-active']"
|
|
:background-color="variables['menu-background']"
|
|
:collapse="collapse"
|
|
:collapse-transition="false"
|
|
:default-active="activeMenu"
|
|
:default-openeds="defaultOpens"
|
|
:text-color="variables['menu-color']"
|
|
:unique-opened="uniqueOpened"
|
|
mode="vertical"
|
|
>
|
|
<template v-for="route in routes">
|
|
<vab-side-bar-item
|
|
:key="route.path"
|
|
:full-path="route.path"
|
|
:item="route"
|
|
/>
|
|
</template>
|
|
</el-menu>
|
|
</el-scrollbar>
|
|
</template>
|
|
<script>
|
|
import variables from '@/styles/variables.scss'
|
|
import { mapGetters } from 'vuex'
|
|
import { defaultOopeneds, uniqueOpened } from '@/config'
|
|
|
|
export default {
|
|
name: 'VabSideBar',
|
|
data() {
|
|
return {
|
|
uniqueOpened,
|
|
}
|
|
},
|
|
computed: {
|
|
...mapGetters({
|
|
collapse: 'settings/collapse',
|
|
routes: 'routes/routes',
|
|
}),
|
|
defaultOpens() {
|
|
if (this.collapse) {
|
|
}
|
|
return defaultOopeneds
|
|
},
|
|
activeMenu() {
|
|
const route = this.$route
|
|
const { meta, path } = route
|
|
if (meta.activeMenu) {
|
|
return meta.activeMenu
|
|
}
|
|
return path
|
|
},
|
|
variables() {
|
|
return variables
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
@mixin active {
|
|
&:hover {
|
|
color: $base-color-white;
|
|
background-color: $base-menu-background-active !important;
|
|
}
|
|
|
|
&.is-active {
|
|
color: $base-color-white;
|
|
background-color: $base-menu-background-active !important;
|
|
}
|
|
}
|
|
|
|
.side-bar-container {
|
|
position: fixed;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: $base-z-index;
|
|
width: $base-left-menu-width;
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
background: $base-menu-background;
|
|
box-shadow: 2px 0 6px rgba(0, 21, 41, 0.35);
|
|
transition: width $base-transition-time;
|
|
|
|
&.is-collapse {
|
|
width: $base-left-menu-width-min;
|
|
border-right: 0;
|
|
|
|
::v-deep {
|
|
.el-menu {
|
|
transition: width $base-transition-time;
|
|
}
|
|
|
|
.el-menu--collapse {
|
|
border-right: 0;
|
|
|
|
.el-submenu__icon-arrow {
|
|
right: 10px;
|
|
margin-top: -3px;
|
|
}
|
|
|
|
.el-menu-item,
|
|
.el-submenu {
|
|
text-align: center;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
::v-deep {
|
|
.el-scrollbar__wrap {
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.el-menu {
|
|
border: 0;
|
|
|
|
.vab-fas-icon {
|
|
padding-right: 3px;
|
|
font-size: $base-font-size-default;
|
|
display: inline-block;
|
|
width: 14px;
|
|
}
|
|
|
|
.vab-remix-icon {
|
|
padding-right: 3px;
|
|
font-size: $base-font-size-default + 2;
|
|
}
|
|
}
|
|
|
|
.el-menu-item,
|
|
.el-submenu__title {
|
|
height: $base-menu-item-height;
|
|
line-height: $base-menu-item-height;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.el-menu-item {
|
|
@include active;
|
|
}
|
|
}
|
|
}
|
|
</style>
|