2019-10-08 01:14:38 +00:00
|
|
|
import { constantRoutes } from '@/router'
|
|
|
|
import { getRouters } from '@/api/menu'
|
|
|
|
import Layout from '@/layout/index'
|
2020-11-28 12:39:03 +00:00
|
|
|
import ParentView from '@/components/ParentView';
|
2019-10-08 01:14:38 +00:00
|
|
|
|
|
|
|
const permission = {
|
|
|
|
state: {
|
|
|
|
routes: [],
|
2020-12-16 12:57:48 +00:00
|
|
|
addRoutes: [],
|
|
|
|
sidebarRouters: []
|
2019-10-08 01:14:38 +00:00
|
|
|
},
|
|
|
|
mutations: {
|
|
|
|
SET_ROUTES: (state, routes) => {
|
|
|
|
state.addRoutes = routes
|
|
|
|
state.routes = constantRoutes.concat(routes)
|
2020-12-16 12:57:48 +00:00
|
|
|
},
|
|
|
|
SET_SIDEBAR_ROUTERS: (state, routers) => {
|
|
|
|
state.sidebarRouters = routers
|
|
|
|
},
|
2019-10-08 01:14:38 +00:00
|
|
|
},
|
|
|
|
actions: {
|
|
|
|
// 生成路由
|
|
|
|
GenerateRoutes({ commit }) {
|
|
|
|
return new Promise(resolve => {
|
|
|
|
// 向后端请求路由数据
|
|
|
|
getRouters().then(res => {
|
2020-12-16 12:57:48 +00:00
|
|
|
const sdata = JSON.parse(JSON.stringify(res.data))
|
|
|
|
const rdata = JSON.parse(JSON.stringify(res.data))
|
|
|
|
const sidebarRoutes = filterAsyncRouter(sdata)
|
|
|
|
const rewriteRoutes = filterAsyncRouter(rdata, true)
|
|
|
|
rewriteRoutes.push({ path: '*', redirect: '/404', hidden: true })
|
|
|
|
commit('SET_ROUTES', rewriteRoutes)
|
|
|
|
commit('SET_SIDEBAR_ROUTERS', sidebarRoutes)
|
|
|
|
resolve(rewriteRoutes)
|
2019-10-08 01:14:38 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 遍历后台传来的路由字符串,转换为组件对象
|
2020-12-16 12:57:48 +00:00
|
|
|
function filterAsyncRouter(asyncRouterMap, isRewrite = false) {
|
2019-10-08 01:14:38 +00:00
|
|
|
return asyncRouterMap.filter(route => {
|
2020-12-16 12:57:48 +00:00
|
|
|
if (isRewrite && route.children) {
|
|
|
|
route.children = filterChildren(route.children)
|
|
|
|
}
|
2019-10-08 01:14:38 +00:00
|
|
|
if (route.component) {
|
2020-11-28 12:39:03 +00:00
|
|
|
// Layout ParentView 组件特殊处理
|
2019-10-08 01:14:38 +00:00
|
|
|
if (route.component === 'Layout') {
|
|
|
|
route.component = Layout
|
2020-11-28 12:39:03 +00:00
|
|
|
} else if (route.component === 'ParentView') {
|
|
|
|
route.component = ParentView
|
2019-10-08 01:14:38 +00:00
|
|
|
} else {
|
|
|
|
route.component = loadView(route.component)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (route.children != null && route.children && route.children.length) {
|
2020-12-16 12:57:48 +00:00
|
|
|
route.children = filterAsyncRouter(route.children, route, isRewrite)
|
2019-10-08 01:14:38 +00:00
|
|
|
}
|
|
|
|
return true
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-12-16 12:57:48 +00:00
|
|
|
function filterChildren(childrenMap) {
|
|
|
|
var children = []
|
|
|
|
childrenMap.forEach((el, index) => {
|
|
|
|
if (el.children && el.children.length) {
|
|
|
|
if (el.component === 'ParentView') {
|
|
|
|
el.children.forEach(c => {
|
|
|
|
c.path = el.path + '/' + c.path
|
|
|
|
if (c.children && c.children.length) {
|
|
|
|
children = children.concat(filterChildren(c.children, c))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
children.push(c)
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
children = children.concat(el)
|
|
|
|
})
|
|
|
|
return children
|
|
|
|
}
|
|
|
|
|
2019-10-08 01:14:38 +00:00
|
|
|
export const loadView = (view) => { // 路由懒加载
|
2020-12-16 12:57:48 +00:00
|
|
|
return (resolve) => require([`@/views/${view}`], resolve)
|
2019-10-08 01:14:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default permission
|