mirror of
https://gitee.com/dromara/go-view.git
synced 2025-05-06 08:06:35 +08:00
81 lines
1.8 KiB
TypeScript
81 lines
1.8 KiB
TypeScript
import { RouteRecordRaw } from 'vue-router'
|
|
import type { AppRouteRecordRaw } from '@/router/types';
|
|
import { ErrorPage404, ErrorPage403, ErrorPage500, Layout, RedirectHome, RedirectUnPublish } from '@/router/constant';
|
|
import { PageEnum } from '@/enums/pageEnum'
|
|
import { GoReload } from '@/components/GoReload'
|
|
|
|
|
|
export const LoginRoute: RouteRecordRaw = {
|
|
path: PageEnum.BASE_LOGIN,
|
|
name: PageEnum.BASE_LOGIN_NAME,
|
|
component: () => import('@/views/login/index.vue'),
|
|
meta: {
|
|
title: '登录',
|
|
},
|
|
};
|
|
|
|
export const HttpErrorPage: RouteRecordRaw[] = [
|
|
{
|
|
path: '/error/404',
|
|
name: PageEnum.ERROR_PAGE_NAME_404,
|
|
component: ErrorPage404,
|
|
meta: {
|
|
title: PageEnum.ERROR_PAGE_NAME_404,
|
|
},
|
|
},
|
|
{
|
|
path: '/error/403',
|
|
name: PageEnum.ERROR_PAGE_NAME_403,
|
|
component: ErrorPage403,
|
|
meta: {
|
|
title: PageEnum.ERROR_PAGE_NAME_403,
|
|
},
|
|
},
|
|
{
|
|
path: '/error/500',
|
|
name: PageEnum.ERROR_PAGE_NAME_500,
|
|
component: ErrorPage500,
|
|
meta: {
|
|
title: PageEnum.ERROR_PAGE_NAME_500,
|
|
},
|
|
},
|
|
]
|
|
|
|
export const ErrorPageRoute: AppRouteRecordRaw = {
|
|
path: '/:path(.*)*',
|
|
name: 'ErrorPage',
|
|
component: ErrorPage404,
|
|
meta: {
|
|
title: PageEnum.ERROR_PAGE_NAME_404,
|
|
hideBreadcrumb: true,
|
|
}
|
|
};
|
|
|
|
export const ReloadRoute: AppRouteRecordRaw = {
|
|
path: PageEnum.RELOAD,
|
|
name: PageEnum.RELOAD_NAME,
|
|
component: GoReload,
|
|
meta: {
|
|
title: PageEnum.RELOAD_NAME,
|
|
},
|
|
}
|
|
|
|
export const RedirectRoute: RouteRecordRaw[] = [
|
|
{
|
|
path: PageEnum.REDIRECT,
|
|
name: PageEnum.REDIRECT_NAME,
|
|
component: RedirectHome,
|
|
meta: {
|
|
title: PageEnum.REDIRECT_NAME,
|
|
},
|
|
},
|
|
{
|
|
path: PageEnum.REDIRECT_UN_PUBLISH,
|
|
name: PageEnum.REDIRECT_UN_PUBLISH_NAME,
|
|
component: RedirectUnPublish,
|
|
meta: {
|
|
title: PageEnum.REDIRECT_UN_PUBLISH_NAME,
|
|
},
|
|
},
|
|
]
|