basic.ts 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. import type { AppRouteRecordRaw } from '/@/router/types';
  2. import { t } from '/@/hooks/web/useI18n';
  3. import { REDIRECT_NAME, LAYOUT, EXCEPTION_COMPONENT, PAGE_NOT_FOUND_NAME, QIANKUN_ROUTE_NAME, QIANKUN_COMPONENT } from '/@/router/constant';
  4. // 404 on a page
  5. export const PAGE_NOT_FOUND_ROUTE: AppRouteRecordRaw = {
  6. path: '/:path(.*)*',
  7. name: PAGE_NOT_FOUND_NAME,
  8. component: LAYOUT,
  9. meta: {
  10. title: 'ErrorPage',
  11. hideBreadcrumb: true,
  12. hideMenu: true,
  13. },
  14. children: [
  15. {
  16. path: '/:path(.*)*',
  17. name: PAGE_NOT_FOUND_NAME,
  18. component: EXCEPTION_COMPONENT,
  19. meta: {
  20. title: 'ErrorPage',
  21. hideBreadcrumb: true,
  22. hideMenu: true,
  23. },
  24. },
  25. ],
  26. };
  27. export const QIANKUN_ROUTE: AppRouteRecordRaw = {
  28. path: '/micro-:path(.*)*',
  29. name: QIANKUN_ROUTE_NAME,
  30. component: LAYOUT,
  31. meta: {
  32. title: '子应用',
  33. hideBreadcrumb: true,
  34. hideMenu: true,
  35. },
  36. children: [
  37. {
  38. path: '/micro-need-air/:path(.*)*',
  39. name: QIANKUN_ROUTE_NAME,
  40. component: QIANKUN_COMPONENT,
  41. meta: {
  42. title: '子应用',
  43. hideBreadcrumb: true,
  44. hideMenu: true,
  45. },
  46. },
  47. {
  48. path: '/micro-vent-3dModal/:path(.*)*',
  49. name: QIANKUN_ROUTE_NAME,
  50. component: import('/@/views/dashboard/Analysis/index.vue'),
  51. // component: LAYOUT,
  52. meta: {
  53. title: '子应用',
  54. hideBreadcrumb: true,
  55. hideMenu: true,
  56. },
  57. },
  58. ],
  59. };
  60. export const REDIRECT_ROUTE: AppRouteRecordRaw = {
  61. path: '/redirect',
  62. component: LAYOUT,
  63. name: 'RedirectTo',
  64. meta: {
  65. title: REDIRECT_NAME,
  66. hideBreadcrumb: true,
  67. hideMenu: true,
  68. },
  69. children: [
  70. {
  71. path: '/redirect/:path(.*)',
  72. name: REDIRECT_NAME,
  73. component: () => import('/@/views/sys/redirect/index.vue'),
  74. meta: {
  75. title: REDIRECT_NAME,
  76. hideBreadcrumb: true,
  77. },
  78. },
  79. ],
  80. };
  81. export const ERROR_LOG_ROUTE: AppRouteRecordRaw = {
  82. path: '/error-log',
  83. name: 'ErrorLog',
  84. component: LAYOUT,
  85. redirect: '/error-log/list',
  86. meta: {
  87. title: 'ErrorLog',
  88. hideBreadcrumb: true,
  89. hideChildrenInMenu: true,
  90. },
  91. children: [
  92. {
  93. path: 'list',
  94. name: 'ErrorLogList',
  95. component: () => import('/@/views/sys/error-log/index.vue'),
  96. meta: {
  97. title: t('routes.basic.errorLogList'),
  98. hideBreadcrumb: true,
  99. currentActiveMenu: '/error-log',
  100. },
  101. },
  102. ],
  103. };