12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- import type { AppRouteRecordRaw } from '/@/router/types';
- import { t } from '/@/hooks/web/useI18n';
- import { REDIRECT_NAME, LAYOUT, EXCEPTION_COMPONENT } from '/@/router/constant';
- // 404 on a page
- export const PAGE_NOT_FOUND_ROUTE: AppRouteRecordRaw = {
- path: '/:path(.*)*',
- name: 'ErrorPage',
- component: LAYOUT,
- meta: {
- title: 'ErrorPage',
- hideBreadcrumb: true,
- },
- children: [
- {
- path: '/:path(.*)*',
- name: 'ErrorPage',
- component: EXCEPTION_COMPONENT,
- meta: {
- title: 'ErrorPage',
- hideBreadcrumb: true,
- },
- },
- ],
- };
- export const REDIRECT_ROUTE: AppRouteRecordRaw = {
- path: '/redirect',
- name: REDIRECT_NAME,
- component: LAYOUT,
- meta: {
- title: REDIRECT_NAME,
- hideBreadcrumb: 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,
- meta: {
- title: 'ErrorLog',
- hideBreadcrumb: true,
- },
- children: [
- {
- path: 'list',
- name: 'errorLogList',
- component: () => import('/@/views/sys/error-log/index.vue'),
- meta: {
- title: t('routes.basic.errorLogList'),
- hideBreadcrumb: true,
- },
- },
- ],
- };
|