|
@@ -1,43 +1,44 @@
|
|
|
-import { createRouter, createWebHashHistory, Router } from 'vue-router'
|
|
|
-import Layout from '@/layout'
|
|
|
-import { RouterTy } from '~/router'
|
|
|
-import routesOne from './routes/routes-file-one'
|
|
|
-import routesTwo from './routes/routes-file-two'
|
|
|
+import { createRouter, createWebHashHistory, Router } from "vue-router";
|
|
|
+import Layout from "@/layout";
|
|
|
+import { RouterTy } from "~/router";
|
|
|
+import routesOne from "./routes/routes-file-one";
|
|
|
+import routesTwo from "./routes/routes-file-two";
|
|
|
+import routesThree from "./routes/routes-file-three";
|
|
|
const routesPush = (arr, routes) => {
|
|
|
- if (!Array.isArray(arr)) return '请传入数组格式路由表'
|
|
|
+ if (!Array.isArray(arr)) return "请传入数组格式路由表";
|
|
|
for (let i = 0; i < arr.length; i++) {
|
|
|
- routes.push(arr[i])
|
|
|
+ routes.push(arr[i]);
|
|
|
}
|
|
|
-}
|
|
|
+};
|
|
|
|
|
|
export const constantRoutes: RouterTy = [
|
|
|
{
|
|
|
- path: '/redirect',
|
|
|
+ path: "/redirect",
|
|
|
component: Layout,
|
|
|
hidden: true,
|
|
|
children: [
|
|
|
{
|
|
|
- path: '/redirect/:path(.*)',
|
|
|
- component: () => import('@/views/redirect')
|
|
|
- }
|
|
|
- ]
|
|
|
+ path: "/redirect/:path(.*)",
|
|
|
+ component: () => import("@/views/redirect"),
|
|
|
+ },
|
|
|
+ ],
|
|
|
},
|
|
|
{
|
|
|
- path: '/login',
|
|
|
- component: () => import('@/views/login/Login.vue'),
|
|
|
- hidden: true
|
|
|
+ path: "/login",
|
|
|
+ component: () => import("@/views/login/Login.vue"),
|
|
|
+ hidden: true,
|
|
|
},
|
|
|
{
|
|
|
- path: '/404',
|
|
|
- component: () => import('@/views/error-page/404.vue'),
|
|
|
- hidden: true
|
|
|
+ path: "/404",
|
|
|
+ component: () => import("@/views/error-page/404.vue"),
|
|
|
+ hidden: true,
|
|
|
},
|
|
|
{
|
|
|
- path: '/401',
|
|
|
- component: () => import('@/views/error-page/401.vue'),
|
|
|
- hidden: true
|
|
|
- }
|
|
|
-]
|
|
|
+ path: "/401",
|
|
|
+ component: () => import("@/views/error-page/401.vue"),
|
|
|
+ hidden: true,
|
|
|
+ },
|
|
|
+];
|
|
|
/**
|
|
|
* asyncRoutes
|
|
|
* the routes that need to be dynamically loaded based on user roles
|
|
@@ -45,17 +46,17 @@ export const constantRoutes: RouterTy = [
|
|
|
export const asyncRoutes: RouterTy = [
|
|
|
// 404 page must be placed at the end !!!
|
|
|
// using pathMatch install of "*" in vue-router 4.0
|
|
|
- { path: '/:pathMatch(.*)', redirect: '/404', hidden: true }
|
|
|
-]
|
|
|
+ { path: "/:pathMatch(.*)", redirect: "/404", hidden: true },
|
|
|
+];
|
|
|
|
|
|
// 插入路由
|
|
|
-routesPush([...routesOne, ...routesTwo], asyncRoutes)
|
|
|
+routesPush([...routesOne, ...routesTwo, ...routesThree], asyncRoutes);
|
|
|
|
|
|
const router: Router = createRouter({
|
|
|
history: createWebHashHistory(),
|
|
|
scrollBehavior: () => ({ top: 0 }),
|
|
|
- routes: constantRoutes
|
|
|
-})
|
|
|
+ routes: constantRoutes,
|
|
|
+});
|
|
|
|
|
|
// export function resetRouter() {
|
|
|
// const newRouter = createRouter({
|
|
@@ -65,4 +66,4 @@ const router: Router = createRouter({
|
|
|
// })
|
|
|
// }
|
|
|
|
|
|
-export default router
|
|
|
+export default router;
|