<template>
|
<div :class="{'has-logo':showLogo}">
|
|
<logo v-if="showLogo" :collapse="isCollapse" />
|
<el-scrollbar wrap-class="scrollbar-wrapper" style="margin-top:56px;height: 85%">
|
<el-menu
|
:default-active="activeMenu"
|
:collapse="isCollapse"
|
:background-color="variables.menuBg"
|
:text-color="variables.menuText"
|
:unique-opened="false"
|
:active-text-color="variables.menuActiveText"
|
:collapse-transition="false"
|
mode="vertical"
|
>
|
<sidebar-item
|
v-for="route in routes"
|
:key="route.path"
|
class="el-scrollbar-menu"
|
:item="route"
|
:base-path="route.path"
|
/>
|
<!-- <sidebar-item v-for="route in permission_routes" :key="route.path" :item="route" :base-path="route.path" />-->
|
|
</el-menu>
|
</el-scrollbar>
|
<div style="position: absolute;bottom: 20px;left: 30px;">
|
<div>
|
<el-button type="text">新凯迪制造V1.0.01</el-button>
|
</div>
|
</div>
|
|
</div>
|
</template>
|
|
<script>
|
import { mapGetters } from 'vuex'
|
import Logo from './Logo'
|
import SidebarItem from './SidebarItem'
|
import variables from '@/styles/variables.scss'
|
import { LoginMenu } from '@/api/user'
|
|
export default {
|
components: { SidebarItem, Logo },
|
data() {
|
return {
|
routers: []
|
}
|
},
|
async created() {
|
const { data: res } = await LoginMenu()
|
this.routers = res
|
this.routers.unshift({ code: '1000', name: '系统设置' })
|
},
|
computed: {
|
...mapGetters([
|
'permission_routes',
|
'sidebar'
|
]),
|
routes() {
|
const newCodeArr = []
|
const newCodeNameArr = []
|
this.routers.forEach(item => {
|
if (item.code) {
|
newCodeArr.push(item.code)
|
newCodeNameArr.push({ code: item.code, title: item.name })
|
if (item.children) {
|
item.children.forEach(it => {
|
if (it.code) {
|
newCodeArr.push(it.code)
|
newCodeNameArr.push({ code: it.code, title: it.name })
|
}
|
})
|
}
|
}
|
})
|
const arr = this.$router.options.routes
|
const arr2 = []
|
arr.forEach((item, index) => {
|
if (newCodeArr.includes(item.code) && item.children.length === 1) {
|
arr2.push(item)
|
} else if (newCodeArr.includes(item.code) && item.children.length > 1) {
|
newCodeNameArr.forEach(it1 => { // 替换接口中的name为菜单名称
|
if (it1.code === item.code) {
|
item.meta.title = it1.title
|
}
|
})
|
const a = []
|
item.children.forEach((it2, ind) => { // 遍历
|
if (newCodeArr.includes(it2.code)) {
|
newCodeNameArr.forEach(it1 => { // 替换接口中的name为菜单名称
|
if (it2.code === it1.code) {
|
it2.meta.title = it1.title
|
}
|
})
|
a.push(it2)
|
}
|
})
|
item.children = a
|
arr2.push(item)
|
}
|
})
|
return arr2
|
// return arr
|
},
|
activeMenu() {
|
const route = this.$route
|
const { meta, path } = route
|
// if set path, the sidebar will highlight the path you set
|
if (meta.activeMenu) {
|
return meta.activeMenu
|
}
|
return path
|
},
|
showLogo() {
|
return this.$store.state.settings.sidebarLogo
|
},
|
variables() {
|
return variables
|
},
|
isCollapse() {
|
return !this.sidebar.opened
|
}
|
}
|
}
|
</script>
|
<style lang="scss">
|
$main_color: #42b983;
|
.el-button--text, .el-button--text.is-disabled, .el-button--text.is-disabled:focus, .el-button--text.is-disabled:hover, .el-button--text:active {
|
color: white;
|
font-size: 18px;
|
}
|
|
#app .sidebar-container .el-submenu .el-menu-item {
|
background-color: transparent !important;
|
}
|
|
#app .sidebar-container .el-submenu .el-menu-item.is-active {
|
background: $main_color !important;
|
color: #fff !important;
|
}
|
|
#app .sidebar-container .el-submenu .el-menu-item:hover {
|
background: $main_color !important;
|
//color: #fff !important;
|
}
|
|
.el-submenu__title {
|
font-weight: bolder;
|
}
|
|
.sub-el-icon::before {
|
color: $main_color;
|
}
|
|
.svg-icon {
|
color: $main_color;
|
}
|
|
.submenu-title-noDropdown {
|
font-weight: bolder;
|
}
|
|
.router-link-exact-active > .submenu-title-noDropdown {
|
color: $main_color !important;
|
}
|
|
.el-menu-item.is-active {
|
color: $main_color !important;
|
}
|
|
.el-button--text:hover {
|
color: #ffffff;
|
cursor: default;
|
}
|
</style>
|