266 lines
6.2 KiB
TypeScript
Raw Normal View History

2022-10-18 15:07:42 +08:00
import { type RouteRecordRaw, createRouter, createWebHashHistory, createWebHistory } from "vue-router"
const Layout = () => import("@/layout/index.vue")
/** 常驻路由 */
export const constantRoutes: RouteRecordRaw[] = [
{
path: "/redirect",
component: Layout,
meta: {
hidden: true
},
children: [
{
path: "/redirect/:path(.*)",
component: () => import("@/views/redirect/index.vue")
}
]
},
{
path: "/403",
component: () => import("@/views/error-page/403.vue"),
meta: {
hidden: true
}
},
{
path: "/404",
component: () => import("@/views/error-page/404.vue"),
meta: {
hidden: true
},
alias: "/:pathMatch(.*)*"
},
{
path: "/login",
component: () => import("@/views/login/index.vue"),
meta: {
hidden: true
}
},
{
path: "/",
component: Layout,
redirect: "/dashboard",
children: [
{
path: "dashboard",
component: () => import("@/views/dashboard/index.vue"),
name: "Dashboard",
meta: {
title: "首页",
svgIcon: "dashboard",
affix: true
}
}
]
2022-04-28 15:48:19 +08:00
},
2022-05-12 19:07:54 +08:00
{
path: "/unocss",
component: Layout,
redirect: "/unocss/index",
children: [
{
path: "index",
component: () => import("@/views/unocss/index.vue"),
2022-08-15 16:34:05 +08:00
name: "UnoCSS",
2022-05-12 19:07:54 +08:00
meta: {
title: "unocss",
svgIcon: "unocss"
2022-05-12 19:07:54 +08:00
}
}
]
},
2022-04-28 15:48:19 +08:00
{
path: "/link",
component: Layout,
children: [
{
path: "https://juejin.cn/post/7089377403717287972",
component: () => {},
name: "Link",
meta: {
title: "外链",
svgIcon: "link"
2022-04-28 15:48:19 +08:00
}
}
]
2022-05-06 11:01:12 +08:00
},
2022-10-20 20:58:57 +08:00
{
path: "/table",
component: Layout,
redirect: "/table/element-plus",
name: "Table",
meta: {
title: "表格",
elIcon: "Grid"
},
children: [
{
path: "element-plus",
component: () => import("@/views/table/element-plus/index.vue"),
name: "ElementPlus",
meta: {
title: "element-plus"
}
},
{
path: "vxe-table",
component: () => import("@/views/table/vxe-table/index.vue"),
name: "VxeTable",
meta: {
title: "vxe-table"
}
}
]
},
2022-05-06 11:01:12 +08:00
{
path: "/menu",
component: Layout,
redirect: "/menu/menu1",
name: "Menu",
meta: {
title: "多级菜单",
svgIcon: "menu"
2022-05-06 11:01:12 +08:00
},
children: [
{
path: "menu1",
component: () => import("@/views/menu/menu1/index.vue"),
redirect: "/menu/menu1/menu1-1",
name: "Menu1",
meta: {
title: "menu1"
},
2022-05-06 11:01:12 +08:00
children: [
{
path: "menu1-1",
component: () => import("@/views/menu/menu1/menu1-1/index.vue"),
name: "Menu1-1",
meta: {
title: "menu1-1"
}
2022-05-06 11:01:12 +08:00
},
{
path: "menu1-2",
component: () => import("@/views/menu/menu1/menu1-2/index.vue"),
redirect: "/menu/menu1/menu1-2/menu1-2-1",
name: "Menu1-2",
meta: {
title: "menu1-2"
},
2022-05-06 11:01:12 +08:00
children: [
{
path: "menu1-2-1",
component: () => import("@/views/menu/menu1/menu1-2/menu1-2-1/index.vue"),
name: "Menu1-2-1",
2022-10-08 15:19:36 +08:00
meta: {
title: "menu1-2-1"
}
2022-05-06 11:01:12 +08:00
},
{
path: "menu1-2-2",
component: () => import("@/views/menu/menu1/menu1-2/menu1-2-2/index.vue"),
name: "Menu1-2-2",
2022-10-08 15:19:36 +08:00
meta: {
title: "menu1-2-2"
}
2022-05-06 11:01:12 +08:00
}
]
},
{
path: "menu1-3",
component: () => import("@/views/menu/menu1/menu1-3/index.vue"),
name: "Menu1-3",
2022-10-08 15:19:36 +08:00
meta: {
title: "menu1-3"
}
2022-05-06 11:01:12 +08:00
}
]
},
{
path: "menu2",
component: () => import("@/views/menu/menu2/index.vue"),
name: "Menu2",
2022-10-08 15:19:36 +08:00
meta: {
title: "menu2"
}
2022-05-06 11:01:12 +08:00
}
]
}
]
/**
*
* (Roles )
* Name
*/
export const asyncRoutes: RouteRecordRaw[] = [
{
path: "/permission",
component: Layout,
redirect: "/permission/page",
name: "Permission",
meta: {
title: "权限管理",
svgIcon: "lock",
roles: ["admin", "editor"], // 可以在根路由中设置角色
alwaysShow: true // 将始终显示根菜单
},
children: [
{
path: "page",
component: () => import("@/views/permission/page.vue"),
name: "PagePermission",
meta: {
title: "页面权限",
roles: ["admin"] // 或者在子导航中设置角色
}
},
{
path: "directive",
component: () => import("@/views/permission/directive.vue"),
name: "DirectivePermission",
meta: {
title: "指令权限" // 如果未设置角色,则表示:该页面不需要权限,但会继承根路由的角色
}
}
]
},
{
path: "/:pathMatch(.*)*", // Must put the 'ErrorPage' route at the end, 必须将 'ErrorPage' 路由放在最后
redirect: "/404",
name: "ErrorPage",
meta: {
hidden: true
}
}
]
const router = createRouter({
history:
import.meta.env.VITE_ROUTER_HISTORY === "hash"
? createWebHashHistory(import.meta.env.VITE_PUBLIC_PATH)
: createWebHistory(import.meta.env.VITE_PUBLIC_PATH),
routes: constantRoutes
})
/** 重置路由 */
export function resetRouter() {
// 注意:所有动态路由路由必须带有 Name 属性,否则可能会不能完全重置干净
try {
router.getRoutes().forEach((route) => {
const { name, meta } = route
if (name && meta.roles?.length) {
router.hasRoute(name) && router.removeRoute(name)
}
})
} catch (error) {
// 强制刷新浏览器也行,只是交互体验不是很好
window.location.reload()
}
}
export default router