78 lines
1.9 KiB
TypeScript
78 lines
1.9 KiB
TypeScript
|
|
import { createRouter, createWebHashHistory, RouteRecordRaw } from 'vue-router';
|
||
|
|
import { usePermissionStoreHook } from '@/store/modules/permission';
|
||
|
|
|
||
|
|
export 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: '/login',
|
||
|
|
component: () => import('@/views/login/index.vue'),
|
||
|
|
meta: { hidden: true }
|
||
|
|
},
|
||
|
|
{
|
||
|
|
path: '/404',
|
||
|
|
component: () => import('@/views/error-page/404.vue'),
|
||
|
|
meta: { hidden: true }
|
||
|
|
},
|
||
|
|
|
||
|
|
{
|
||
|
|
path: '/',
|
||
|
|
component: Layout,
|
||
|
|
redirect: '/dashboard',
|
||
|
|
children: [
|
||
|
|
{
|
||
|
|
path: 'dashboard',
|
||
|
|
opturl: '/dashboard',
|
||
|
|
component: () => import('@/views/dashboard/index.vue'),
|
||
|
|
name: '首页',
|
||
|
|
icon: 'homepage',
|
||
|
|
meta: { title: 'dashboard', icon: 'homepage', affix: true }
|
||
|
|
},
|
||
|
|
{
|
||
|
|
path: 'personalCenter',
|
||
|
|
component: () => import('@/views/system/user/personalCenter.vue'),
|
||
|
|
name: '个人中心',
|
||
|
|
meta: { title: 'personalCenter',hidden: true, icon: 'personalCenter' }
|
||
|
|
},
|
||
|
|
{
|
||
|
|
path: '401',
|
||
|
|
component: () => import('@/views/error-page/401.vue'),
|
||
|
|
meta: { hidden: true }
|
||
|
|
},
|
||
|
|
]
|
||
|
|
}
|
||
|
|
];
|
||
|
|
|
||
|
|
// 创建路由
|
||
|
|
const router = createRouter({
|
||
|
|
history: createWebHashHistory(),
|
||
|
|
routes: constantRoutes as RouteRecordRaw[],
|
||
|
|
// 刷新时,滚动条位置还原
|
||
|
|
scrollBehavior: () => ({ left: 0, top: 0 })
|
||
|
|
});
|
||
|
|
|
||
|
|
// 重置路由
|
||
|
|
export function resetRouter() {
|
||
|
|
const permissionStore = usePermissionStoreHook();
|
||
|
|
permissionStore.routes.forEach(route => {
|
||
|
|
const name = route.name;
|
||
|
|
if (name && router.hasRoute(name)) {
|
||
|
|
router.hasRoute(name) && router.removeRoute(name);
|
||
|
|
}
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
export default router;
|