600 lines
21 KiB
TypeScript
600 lines
21 KiB
TypeScript
import { createRouter, createWebHashHistory, RouteRecordRaw } from "vue-router"
|
||
import { store } from "/@/store/index.ts"
|
||
|
||
// 定义动态路由
|
||
export const dynamicRoutes = [
|
||
{
|
||
path: '/',
|
||
name: '/',
|
||
component: () => import('/@/views/layout/index.vue'),
|
||
redirect: '/home',
|
||
meta: {
|
||
isKeepAlive: true
|
||
},
|
||
children: [{
|
||
path: '/home',
|
||
name: 'home',
|
||
component: () => import('/@/views/home/index.vue'),
|
||
meta: {
|
||
title: '首页',
|
||
isLink: '',
|
||
isHide: false,
|
||
isKeepAlive: true,
|
||
isAffix: true,
|
||
isIframe: false,
|
||
auth: ['admin', 'test'],
|
||
icon: 'iconfont icon-shouye'
|
||
}
|
||
},
|
||
{
|
||
path: '/system',
|
||
name: 'system',
|
||
component: () => import('/@/views/layout/routerView/parent.vue'),
|
||
redirect: '/system/menu',
|
||
meta: {
|
||
title: '系统设置',
|
||
isLink: '',
|
||
isHide: false,
|
||
isKeepAlive: true,
|
||
isAffix: false,
|
||
isIframe: false,
|
||
auth: ['admin'],
|
||
icon: 'iconfont icon-xitongshezhi'
|
||
},
|
||
children: [
|
||
{
|
||
path: '/system/menu',
|
||
name: "systemMenu",
|
||
component: () => import('/@/views/system/menu/index.vue'),
|
||
meta: {
|
||
title: '菜单管理',
|
||
isLink: '',
|
||
isHide: false,
|
||
isKeepAlive: true,
|
||
isAffix: false,
|
||
isIframe: false,
|
||
auth: ['admin'],
|
||
icon: 'iconfont icon-caidan'
|
||
}
|
||
},
|
||
{
|
||
path: '/system/user',
|
||
name: "systemUser",
|
||
component: () => import('/@/views/system/user/index.vue'),
|
||
meta: {
|
||
title: '用户管理',
|
||
isLink: '',
|
||
isHide: false,
|
||
isKeepAlive: true,
|
||
isAffix: false,
|
||
isIframe: false,
|
||
auth: ['admin'],
|
||
icon: 'iconfont icon-icon-',
|
||
}
|
||
}
|
||
]
|
||
},
|
||
{
|
||
path: '/limits',
|
||
name: 'limits',
|
||
component: () => import('/@/views/layout/routerView/parent.vue'),
|
||
redirect: '/limits/frontEnd',
|
||
meta: {
|
||
title: '权限管理',
|
||
isLink: '',
|
||
isHide: false,
|
||
isKeepAlive: true,
|
||
isAffix: false,
|
||
isIframe: false,
|
||
auth: ['admin', 'test'],
|
||
icon: 'iconfont icon-quanxian'
|
||
},
|
||
children: [
|
||
{
|
||
path: '/limits/frontEnd',
|
||
name: 'limitsFrontEnd',
|
||
component: () => import('/@/views/layout/routerView/parent.vue'),
|
||
redirect: '/limits/frontEnd/page',
|
||
meta: {
|
||
title: '前端控制',
|
||
isLink: '',
|
||
isHide: false,
|
||
isKeepAlive: true,
|
||
isAffix: false,
|
||
isIframe: false,
|
||
auth: ['admin', 'test']
|
||
},
|
||
children: [
|
||
{
|
||
path: '/limits/frontEnd/page',
|
||
name: 'limitsFrontEndPage',
|
||
component: () => import('/@/views/limits/frontEnd/page/index.vue'),
|
||
meta: {
|
||
title: '页面权限',
|
||
isLink: '',
|
||
isHide: false,
|
||
isKeepAlive: true,
|
||
isAffix: false,
|
||
isIframe: false,
|
||
auth: ['admin', 'test']
|
||
}
|
||
},
|
||
{
|
||
path: '/limits/frontEnd/btn',
|
||
name: 'limitsFrontEndBtn',
|
||
component: () => import('/@/views/limits/frontEnd/btn/index.vue'),
|
||
meta: {
|
||
title: '按钮权限',
|
||
isLink: '',
|
||
isHide: false,
|
||
isKeepAlive: true,
|
||
isAffix: false,
|
||
isIframe: false,
|
||
auth: ['admin', 'test']
|
||
}
|
||
}
|
||
]
|
||
},
|
||
{
|
||
path: '/limits/backEnd',
|
||
name: 'limitsBackEnd',
|
||
component: () => import('/@/views/layout/routerView/parent.vue'),
|
||
meta: {
|
||
title: '后端控制',
|
||
isLink: '',
|
||
isHide: false,
|
||
isKeepAlive: true,
|
||
isAffix: false,
|
||
isIframe: false,
|
||
auth: ['admin', 'test']
|
||
},
|
||
children: [
|
||
{
|
||
path: '/limits/backEnd/page',
|
||
name: 'limitsBackEndEndPage',
|
||
component: () => import('/@/views/limits/backEnd/page/index.vue'),
|
||
meta: {
|
||
title: '页面权限',
|
||
isLink: '',
|
||
isHide: false,
|
||
isKeepAlive: true,
|
||
isAffix: false,
|
||
isIframe: false,
|
||
auth: ['admin', 'test']
|
||
}
|
||
},
|
||
{
|
||
path: '/limits/backEnd/btn',
|
||
name: 'limitsBackEndEndBtn',
|
||
component: () => import('/@/views/limits/backEnd/btn/index.vue'),
|
||
meta: {
|
||
title: '按钮权限',
|
||
isLink: '',
|
||
isHide: false,
|
||
isKeepAlive: true,
|
||
isAffix: false,
|
||
isIframe: false,
|
||
auth: ['admin', 'test']
|
||
}
|
||
}
|
||
]
|
||
}
|
||
]
|
||
},
|
||
{
|
||
path: '/menu',
|
||
name: 'menu',
|
||
component: () => import('/@/views/layout/routerView/parent.vue'),
|
||
redirect: '/menu/menu1',
|
||
meta: {
|
||
title: '路由嵌套',
|
||
isLink: '',
|
||
isHide: false,
|
||
isKeepAlive: true,
|
||
isAffix: false,
|
||
isIframe: false,
|
||
auth: ['admin', 'test'],
|
||
icon: 'iconfont icon-xitongshezhi'
|
||
},
|
||
children: [
|
||
{
|
||
path: '/menu/menu1',
|
||
name: 'menu1',
|
||
component: () => import('/@/views/layout/routerView/parent.vue'),
|
||
redirect: '/menu/menu1/menu11',
|
||
meta: {
|
||
title: '菜单1',
|
||
isLink: '',
|
||
isHide: false,
|
||
isKeepAlive: true,
|
||
isAffix: false,
|
||
isIframe: false,
|
||
auth: ['admin', 'test'],
|
||
icon: 'iconfont icon-caidan'
|
||
},
|
||
children: [
|
||
{
|
||
path: '/menu/menu1/menu11',
|
||
name: 'menu11',
|
||
component: () => import('/@/views/menu/menu1/menu11/index.vue'),
|
||
meta: {
|
||
title: '菜单11',
|
||
isLink: '',
|
||
isHide: false,
|
||
isKeepAlive: true,
|
||
isAffix: false,
|
||
isIframe: false,
|
||
auth: ['admin', 'test'],
|
||
icon: 'iconfont icon-caidan'
|
||
}
|
||
},
|
||
{
|
||
path: '/menu/menu1/menu12',
|
||
name: 'menu12',
|
||
component: () => import('/@/views/layout/routerView/parent.vue'),
|
||
redirect: '/menu/menu1/menu12/menu121',
|
||
meta: {
|
||
title: '菜单12',
|
||
isLink: '',
|
||
isHide: false,
|
||
isKeepAlive: true,
|
||
isAffix: false,
|
||
isIframe: false,
|
||
auth: ['admin', 'test'],
|
||
icon: 'iconfont icon-caidan'
|
||
},
|
||
children: [
|
||
{
|
||
path: '/menu/menu1/menu12/menu121',
|
||
name: 'menu121',
|
||
component: () => import('/@/views/menu/menu1/menu12/menu121/index.vue'),
|
||
meta: {
|
||
title: '菜单121',
|
||
isLink: '',
|
||
isHide: false,
|
||
isKeepAlive: true,
|
||
isAffix: false,
|
||
isIframe: false,
|
||
auth: ['admin', 'test'],
|
||
icon: 'iconfont icon-caidan'
|
||
}
|
||
},
|
||
{
|
||
path: '/menu/menu1/menu12/menu122',
|
||
name: 'menu122',
|
||
component: () => import('/@/views/menu/menu1/menu12/menu122/index.vue'),
|
||
meta: {
|
||
title: '菜单122',
|
||
isLink: '',
|
||
isHide: false,
|
||
isKeepAlive: true,
|
||
isAffix: false,
|
||
isIframe: false,
|
||
auth: ['admin', 'test'],
|
||
icon: 'iconfont icon-caidan'
|
||
}
|
||
}
|
||
]
|
||
},
|
||
{
|
||
path: '/menu/menu1/menu13',
|
||
name: 'menu13',
|
||
component: () => import('/@/views/menu/menu1/menu13/index.vue'),
|
||
meta: {
|
||
title: '菜单13',
|
||
isLink: '',
|
||
isHide: false,
|
||
isKeepAlive: true,
|
||
isAffix: false,
|
||
isIframe: false,
|
||
auth: ['admin', 'test'],
|
||
icon: 'iconfont icon-caidan'
|
||
}
|
||
}
|
||
]
|
||
},
|
||
{
|
||
path: '/menu/menu2',
|
||
name: 'menu2',
|
||
component: () => import('/@/views/menu/menu2/index.vue'),
|
||
meta: {
|
||
title: '菜单2',
|
||
isLink: '',
|
||
isHide: false,
|
||
isKeepAlive: true,
|
||
isAffix: false,
|
||
isIframe: false,
|
||
auth: ['admin', 'test'],
|
||
icon: 'iconfont icon-caidan'
|
||
}
|
||
}
|
||
]
|
||
},
|
||
{
|
||
path: '/fun',
|
||
name: 'funIndex',
|
||
component: () => import('/@/views/layout/routerView/parent.vue'),
|
||
redirect: '/fun/tagsView',
|
||
meta: {
|
||
title: '功能',
|
||
isLink: '',
|
||
isHide: false,
|
||
isKeepAlive: true,
|
||
isAffix: false,
|
||
isIframe: false,
|
||
auth: ['admin', 'test'],
|
||
icon: 'iconfont icon-crew_feature'
|
||
},
|
||
children: [
|
||
{
|
||
path: '/fun/tagsView',
|
||
name: 'funTagsView',
|
||
component: () => import('/@/views/fun/tagsView/index.vue'),
|
||
meta: {
|
||
title: 'tagsView 操作',
|
||
isLink: '',
|
||
isHide: false,
|
||
isKeepAlive: true,
|
||
isAffix: false,
|
||
isIframe: false,
|
||
auth: ['admin', 'test'],
|
||
icon: 'el-icon-thumb'
|
||
}
|
||
}
|
||
]
|
||
},
|
||
{
|
||
path: '/pages',
|
||
name: 'pagesIndex',
|
||
component: () => import('/@/views/pages/index.vue'),
|
||
meta: {
|
||
title: '页面',
|
||
isLink: '',
|
||
isHide: false,
|
||
isKeepAlive: true,
|
||
isAffix: false,
|
||
isIframe: false,
|
||
auth: ['admin', 'test'],
|
||
icon: 'iconfont icon-fuzhiyemian'
|
||
}
|
||
},
|
||
{
|
||
path: '/components',
|
||
name: 'componentsIndex',
|
||
component: () => import('/@/views/components/index.vue'),
|
||
meta: {
|
||
title: '组件',
|
||
isLink: '',
|
||
isHide: false,
|
||
isKeepAlive: true,
|
||
isAffix: false,
|
||
isIframe: false,
|
||
auth: ['admin', 'test'],
|
||
icon: 'iconfont icon-zujian'
|
||
}
|
||
},
|
||
{
|
||
path: '/chart',
|
||
name: 'chartIndex',
|
||
component: () => import('/@/views/chart/index.vue'),
|
||
meta: {
|
||
title: '大数据图表',
|
||
isLink: '',
|
||
isHide: false,
|
||
isKeepAlive: true,
|
||
isAffix: false,
|
||
isIframe: false,
|
||
auth: ['admin', 'test'],
|
||
icon: 'iconfont icon-ico_shuju'
|
||
}
|
||
},
|
||
{
|
||
path: '/personal',
|
||
name: 'personal',
|
||
component: () => import('/@/views/personal/index.vue'),
|
||
meta: {
|
||
title: '个人中心',
|
||
isLink: '',
|
||
isHide: false,
|
||
isKeepAlive: true,
|
||
isAffix: false,
|
||
isIframe: false,
|
||
auth: ['admin', 'test'],
|
||
icon: 'iconfont icon-gerenzhongxin'
|
||
}
|
||
},
|
||
{
|
||
path: '/tools',
|
||
name: 'tools',
|
||
component: () => import('/@/views/tools/index.vue'),
|
||
meta: {
|
||
title: '工具类集合',
|
||
isLink: '',
|
||
isHide: false,
|
||
isKeepAlive: true,
|
||
isAffix: false,
|
||
isIframe: false,
|
||
auth: ['admin', 'test'],
|
||
icon: 'iconfont icon-gongju'
|
||
}
|
||
},
|
||
{
|
||
path: '/link',
|
||
name: 'layoutLinkView',
|
||
component: () => import('/@/views/layout/routerView/parent.vue'),
|
||
meta: {
|
||
title: '外链',
|
||
isLink: 'https://element-plus.gitee.io/#/zh-CN/component/installation',
|
||
isHide: false,
|
||
isKeepAlive: false,
|
||
isAffix: false,
|
||
isIframe: false,
|
||
auth: ['admin'],
|
||
icon: 'iconfont icon-caozuo-wailian'
|
||
}
|
||
},
|
||
{
|
||
path: '/iframes',
|
||
name: 'layoutIfameView',
|
||
component: () => import('/@/views/layout/routerView/parent.vue'),
|
||
meta: {
|
||
title: '内嵌 iframe',
|
||
isLink: 'https://gitee.com/lyt-top/vue-admin-wonderful',
|
||
isHide: false,
|
||
isKeepAlive: true,
|
||
isAffix: true,
|
||
isIframe: true,
|
||
auth: ['admin'],
|
||
icon: 'iconfont icon-neiqianshujuchucun'
|
||
}
|
||
}]
|
||
}
|
||
]
|
||
|
||
// 定义静态路由
|
||
const staticRoutes: Array<RouteRecordRaw> = [
|
||
{
|
||
path: '/login',
|
||
component: () => import('/@/views/login/index.vue'),
|
||
meta: {
|
||
title: '登陆'
|
||
}
|
||
},
|
||
{
|
||
path: '/404',
|
||
component: () => import('/@/views/error/404.vue'),
|
||
meta: {
|
||
title: '找不到此页面'
|
||
}
|
||
},
|
||
{
|
||
path: '/401',
|
||
component: () => import('/@/views/error/401.vue'),
|
||
meta: {
|
||
title: '没有权限'
|
||
}
|
||
},
|
||
{
|
||
path: '/:pathMatch(.*)',
|
||
redirect: '/404',
|
||
meta: {
|
||
title: '页面找不到重定向'
|
||
}
|
||
}
|
||
]
|
||
|
||
// 添加静态路由
|
||
const router = createRouter({
|
||
history: createWebHashHistory(),
|
||
routes: staticRoutes
|
||
})
|
||
|
||
// 多级嵌套数组处理成一维数组
|
||
export function formatFlatteningRoutes(arr: any) {
|
||
if (arr.length < 0) return false
|
||
for (let i = 0; i < arr.length; i++) {
|
||
if (arr[i].children) {
|
||
arr = arr.slice(0, i + 1).concat(arr[i].children, arr.slice(i + 1))
|
||
}
|
||
}
|
||
return arr
|
||
}
|
||
|
||
// 多级嵌套数组处理后的一维数组,再处理成 `定义动态路由` 的格式
|
||
// 只保留二级:也就是二级以上全部处理成只有二级,keep-alive 支持二级缓存
|
||
// isKeepAlive 处理 `name` 值,进行缓存。顶级关闭,全部不缓存
|
||
export function formatTwoStageRoutes(arr: any) {
|
||
if (arr.length < 0) return false
|
||
const newArr: any = []
|
||
const cacheList: Array<string> = []
|
||
arr.map((v: any) => {
|
||
if (v.path === '/') {
|
||
newArr.push({ component: v.component, name: v.name, path: v.path, redirect: v.redirect, meta: v.meta, children: [] })
|
||
} else {
|
||
newArr[0].children.push({ ...v })
|
||
if (newArr[0].meta.isKeepAlive && v.meta.isKeepAlive) {
|
||
cacheList.push(v.name)
|
||
store.dispatch('setCacheKeepAlive', cacheList)
|
||
}
|
||
}
|
||
})
|
||
return newArr
|
||
}
|
||
|
||
// 缓存多级嵌套数组处理后的一维数组(tagsView中使用)
|
||
export function setCacheTagsViewRoutes() {
|
||
store.dispatch('setTagsViewRoutes', formatTwoStageRoutes(formatFlatteningRoutes(dynamicRoutes))[0].children)
|
||
}
|
||
|
||
// 获取当前用户的权限去比对路由表,用于左侧菜单/横向菜单的显示
|
||
export function setFilterMenu() {
|
||
if (store.state.auths.length <= 0) store.dispatch('setAuths')
|
||
store.dispatch("setRoutes", setFilterMenuFun(dynamicRoutes[0].children, store.state.auths))
|
||
}
|
||
|
||
// 判断路由 auth 中是否包含当前登录用户权限字段
|
||
export function hasAuth(auths: any, route: any) {
|
||
if (route.meta && route.meta.auth) return auths.some((auth: any) => route.meta.auth.includes(auth))
|
||
else return true
|
||
}
|
||
|
||
// 递归过滤又权限的路由
|
||
export function setFilterMenuFun(routes: any, auth: any) {
|
||
const menu: any = []
|
||
routes.map((route: any) => {
|
||
const item = { ...route }
|
||
if (hasAuth(auth, item)) {
|
||
if (item.children) item.children = setFilterMenuFun(item.children, auth)
|
||
menu.push(item)
|
||
}
|
||
})
|
||
return menu
|
||
}
|
||
|
||
// 获取当前用户的权限去比对路由表,用于动态路由的添加
|
||
export function setFilterRoute() {
|
||
if (store.state.auths.length <= 0) store.dispatch('setAuths')
|
||
let filterRoute: any = []
|
||
formatTwoStageRoutes(formatFlatteningRoutes(dynamicRoutes))[0].children.map((route: any) => {
|
||
route.meta.auth.map((metaAuth: any) => {
|
||
store.state.auths.map((auth: any) => {
|
||
if (metaAuth === auth) filterRoute.push({ ...route })
|
||
})
|
||
})
|
||
})
|
||
return filterRoute
|
||
}
|
||
|
||
// 比对后的路由表,进行重新赋值
|
||
export function setFilterRouteEnd() {
|
||
let filterRouteEnd: any = formatTwoStageRoutes(formatFlatteningRoutes(dynamicRoutes))
|
||
filterRouteEnd[0].children = setFilterRoute()
|
||
return filterRouteEnd
|
||
}
|
||
|
||
// 添加动态路由
|
||
export function setAddRoute() {
|
||
setFilterRouteEnd().map((route: any) => {
|
||
router.addRoute(route as RouteRecordRaw)
|
||
})
|
||
}
|
||
|
||
// 删除/重置路由
|
||
export function resetRoute() {
|
||
setFilterRouteEnd().map((route: any) => {
|
||
const { name } = route
|
||
router.hasRoute(name) && router.removeRoute(name)
|
||
})
|
||
}
|
||
|
||
// 初始化执行函数
|
||
setAddRoute()
|
||
setFilterMenu()
|
||
setCacheTagsViewRoutes()
|
||
|
||
|
||
// router.afterEach((to, from) => {
|
||
|
||
// })
|
||
|
||
export default router |