123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- import type { AppRouteRecordRaw } from '/@/router/types';
- import { t } from '/@/hooks/web/useI18n';
- import { REDIRECT_NAME, LAYOUT, EXCEPTION_COMPONENT, PAGE_NOT_FOUND_NAME, QIANKUN_ROUTE_NAME, QIANKUN_COMPONENT } from '/@/router/constant';
- // 404 on a page
- export const PAGE_NOT_FOUND_ROUTE: AppRouteRecordRaw = {
- path: '/:path(.*)*',
- name: PAGE_NOT_FOUND_NAME,
- component: LAYOUT,
- meta: {
- title: 'ErrorPage',
- hideBreadcrumb: true,
- hideMenu: true,
- },
- children: [
- {
- path: '/:path(.*)*',
- name: PAGE_NOT_FOUND_NAME,
- component: EXCEPTION_COMPONENT,
- meta: {
- title: 'ErrorPage',
- hideBreadcrumb: true,
- hideMenu: true,
- },
- },
- ],
- };
- export const QIANKUN_ROUTE: AppRouteRecordRaw = {
- path: '/micro-:path(.*)*',
- name: QIANKUN_ROUTE_NAME,
- component: LAYOUT,
- meta: {
- title: '子应用',
- hideBreadcrumb: true,
- hideMenu: true,
- },
- children: [
- {
- path: '/micro-need-air/:path(.*)*',
- name: QIANKUN_ROUTE_NAME,
- component: QIANKUN_COMPONENT,
- meta: {
- title: '子应用',
- hideBreadcrumb: true,
- hideMenu: true,
- },
- },
- {
- path: '/micro-vent-3dModal/:path(.*)*',
- name: QIANKUN_ROUTE_NAME,
- component: import('/@/views/dashboard/Analysis/index.vue'),
- // component: LAYOUT,
- meta: {
- title: '子应用',
- hideBreadcrumb: true,
- hideMenu: true,
- },
- },
- ],
- };
- export const REDIRECT_ROUTE: AppRouteRecordRaw = {
- path: '/redirect',
- component: LAYOUT,
- name: 'RedirectTo',
- meta: {
- title: REDIRECT_NAME,
- hideBreadcrumb: true,
- hideMenu: true,
- },
- children: [
- {
- path: '/redirect/:path(.*)',
- name: REDIRECT_NAME,
- component: () => import('/@/views/sys/redirect/index.vue'),
- meta: {
- title: REDIRECT_NAME,
- hideBreadcrumb: true,
- },
- },
- ],
- };
- export const ERROR_LOG_ROUTE: AppRouteRecordRaw = {
- path: '/error-log',
- name: 'ErrorLog',
- component: LAYOUT,
- redirect: '/error-log/list',
- meta: {
- title: 'ErrorLog',
- hideBreadcrumb: true,
- hideChildrenInMenu: true,
- },
- children: [
- {
- path: 'list',
- name: 'ErrorLogList',
- component: () => import('/@/views/sys/error-log/index.vue'),
- meta: {
- title: t('routes.basic.errorLogList'),
- hideBreadcrumb: true,
- currentActiveMenu: '/error-log',
- },
- },
- ],
- };
|