index.ts 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. import { createRouter, createWebHashHistory, Router } from "vue-router";
  2. import Layout from "@/layout";
  3. import { RouterTy } from "~/router";
  4. import routesOne from "./routes/routes-file-one";
  5. import routesTwo from "./routes/routes-file-two";
  6. import routesThree from "./routes/routes-file-three";
  7. import routesFour from "./routes/routes-file-four";
  8. import routesFive from "./routes/routes-file-five";
  9. import routesSix from "./routes/routes-file-six";
  10. const routesPush = (arr, routes) => {
  11. if (!Array.isArray(arr)) return "请传入数组格式路由表";
  12. for (let i = 0; i < arr.length; i++) {
  13. routes.push(arr[i]);
  14. }
  15. };
  16. export const constantRoutes: RouterTy = [
  17. {
  18. path: "/redirect",
  19. component: Layout,
  20. hidden: true,
  21. children: [
  22. {
  23. path: "/redirect/:path(.*)",
  24. component: () => import("@/views/redirect"),
  25. },
  26. ],
  27. },
  28. {
  29. path: "/login",
  30. component: () => import("@/views/login/Login.vue"),
  31. hidden: true,
  32. },
  33. {
  34. path: "/404",
  35. component: () => import("@/views/error-page/404.vue"),
  36. hidden: true,
  37. },
  38. {
  39. path: "/401",
  40. component: () => import("@/views/error-page/401.vue"),
  41. hidden: true,
  42. },
  43. ];
  44. /**
  45. * asyncRoutes
  46. * the routes that need to be dynamically loaded based on user roles
  47. */
  48. export const asyncRoutes: RouterTy = [
  49. // 404 page must be placed at the end !!!
  50. // using pathMatch install of "*" in vue-router 4.0
  51. { path: "/:pathMatch(.*)", redirect: "/404", hidden: true },
  52. ];
  53. // 插入路由
  54. routesPush(
  55. [
  56. ...routesOne,
  57. ...routesTwo,
  58. ...routesThree,
  59. ...routesFour,
  60. ...routesFive,
  61. ...routesSix,
  62. ],
  63. asyncRoutes
  64. );
  65. const router: Router = createRouter({
  66. history: createWebHashHistory(),
  67. scrollBehavior: () => ({ top: 0 }),
  68. routes: constantRoutes,
  69. });
  70. // export function resetRouter() {
  71. // const newRouter = createRouter({
  72. // history: createWebHashHistory(),
  73. // scrollBehavior: () => ({ top: 0 }),
  74. // routes: constantRoutes
  75. // })
  76. // }
  77. export default router;