|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<el-menu class="sidebar-el-menu" :default-active="onRoutes" background-color="#324157" text-color="#bfcbd9"
|
|
|
|
active-text-color="#9278FF" unique-opened mode="horizontal" router @select="handleSelect">
|
|
|
|
<template v-for="item in menus">
|
|
|
|
<template v-if="item.subs">
|
|
|
|
<el-submenu :index="item.index" :key="item.index">
|
|
|
|
<template slot="title">
|
|
|
|
<i :class="item.icon"></i>
|
|
|
|
<span slot="title">{{ item.title }}</span>
|
|
|
|
</template>
|
|
|
|
<template v-for="subItem in item.subs">
|
|
|
|
<el-submenu v-if="subItem.subs" :index="subItem.index" :key="subItem.index">
|
|
|
|
<template slot="title">{{ subItem.title }}</template>
|
|
|
|
<el-menu-item v-for="(threeItem, i) in subItem.subs" :key="i" :index="threeItem.index">{{
|
|
|
|
threeItem.title
|
|
|
|
}}</el-menu-item>
|
|
|
|
</el-submenu>
|
|
|
|
<el-menu-item v-else :index="subItem.index" :key="subItem.index">{{ subItem.title }}</el-menu-item>
|
|
|
|
</template>
|
|
|
|
</el-submenu>
|
|
|
|
</template>
|
|
|
|
<template v-else>
|
|
|
|
<el-menu-item :index="item.index" :key="item.index">
|
|
|
|
<i :class="item.icon"></i>
|
|
|
|
<span slot="title">{{ item.title }}</span>
|
|
|
|
</el-menu-item>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-menu>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import Setting from '@/setting'
|
|
|
|
import addRoutes from '@/libs/route/addRoutes'
|
|
|
|
export default {
|
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
menuList: [
|
|
|
|
{
|
|
|
|
icon: 'el-icon-school',
|
|
|
|
index: '/customer',
|
|
|
|
title: '客户管理'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: 'el-icon-user',
|
|
|
|
index: '/user',
|
|
|
|
title: '用户管理'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: 'el-icon-shopping-bag-2',
|
|
|
|
index: '/order',
|
|
|
|
title: '订单管理'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: 'el-icon-document-checked',
|
|
|
|
index: '/curriculum',
|
|
|
|
title: '课程管理'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: 'el-icon-notebook-2',
|
|
|
|
index: '/data',
|
|
|
|
title: '数据管理'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: 'el-icon-tickets',
|
|
|
|
index: '/match',
|
|
|
|
title: '大赛管理'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: 'el-icon-takeaway-box',
|
|
|
|
index: '/theoreticalCourse',
|
|
|
|
title: '理论课程'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: 'el-icon-box',
|
|
|
|
index: '/information',
|
|
|
|
title: '资讯管理'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: 'el-icon-receiving',
|
|
|
|
index: '/configure',
|
|
|
|
title: '服务配置'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: 'el-icon-office-building',
|
|
|
|
index: '/system',
|
|
|
|
title: '系统配置'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: 'el-icon-box',
|
|
|
|
index: '/parner',
|
|
|
|
title: '合伙管理'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: 'el-icon-data-line',
|
|
|
|
index: '/parnerOperation',
|
|
|
|
title: '合伙运营'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: 'el-icon-shopping-cart-2',
|
|
|
|
index: '/shop',
|
|
|
|
title: '商城管理'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: 'el-icon-data-board',
|
|
|
|
index: '/theoryExam',
|
|
|
|
title: '考试平台'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: 'el-icon-document-copy',
|
|
|
|
index: '/review',
|
|
|
|
title: '评阅平台'
|
|
|
|
},
|
|
|
|
],
|
|
|
|
menus: [],
|
|
|
|
onRoutes: this.$route.path
|
|
|
|
};
|
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
"$route.path": function (val) {
|
|
|
|
this.menuList.map(e => {
|
|
|
|
if (val.replace('/', '') === e.index) {
|
|
|
|
this.handleSelect(val.replace('/', ''))
|
|
|
|
this.$forceUpdate();
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
},
|
|
|
|
mounted () {
|
|
|
|
// sessionStorage.getItem('sideBar') && this.handleSelect(sessionStorage.getItem('sideBar'))
|
|
|
|
sessionStorage.getItem('token') && this.getPer() // 登录了才获取权限
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
handleSelect (index) {
|
|
|
|
this.onRoutes = index
|
|
|
|
this.$store.commit('setInfoTab', '1')
|
|
|
|
this.$store.commit('setColumnId', '')
|
|
|
|
this.$store.commit('setCompetitionCache', null)
|
|
|
|
sessionStorage.setItem('sideBar', index)
|
|
|
|
},
|
|
|
|
initMenu () {
|
|
|
|
if (Setting.dynamicRoute) {
|
|
|
|
const routes = this.$store.state.routes
|
|
|
|
const menus = []
|
|
|
|
this.menuList.map(e => {
|
|
|
|
routes.find(n => n.path === e.index) && menus.push(e)
|
|
|
|
})
|
|
|
|
this.menus = menus
|
|
|
|
} else {
|
|
|
|
this.menus = this.menuList
|
|
|
|
}
|
|
|
|
},
|
|
|
|
// 获取权限列表
|
|
|
|
getPer () {
|
|
|
|
this.$get(`${this.api.getUserRolesPermissionMenu}?platformId=${Setting.platformId}`).then(res => {
|
|
|
|
const routes = res.permissionMenu[0].children
|
|
|
|
addRoutes(routes)
|
|
|
|
this.initMenu()
|
|
|
|
this.$store.commit('setDataPer', res.dataPermissionList)
|
|
|
|
}).catch(err => {
|
|
|
|
if (err.status === 500) {
|
|
|
|
localStorage.removeItem('ms_username');
|
|
|
|
sessionStorage.clear()
|
|
|
|
location.reload()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
},
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
.sidebar::-webkit-scrollbar {
|
|
|
|
width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar-el-menu:not(.el-menu--collapse) {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar>ul {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
</style>
|