Files
admin-sjzx/src/router/static.ts

121 lines
3.3 KiB
TypeScript
Raw Normal View History

2024-02-19 13:44:32 +08:00
import type { RouteRecordRaw } from 'vue-router'
const pageTitle = (name: string): string => {
return `pagesTitle.${name}`
}
/**
*
*/
export const adminBaseRoutePath = '/admin'
export const adminBaseRoute = {
path: adminBaseRoutePath,
name: 'admin',
component: () => import('@/layouts/admin/index.vue'),
// 直接重定向到 loading 路由
redirect: adminBaseRoutePath + '/loading',
meta: {
title: `pagesTitle.admin`
},
children: [
{
path: 'loading/:to?',
name: 'adminMainLoading',
component: () => import('@/layouts/common/components/loading.vue'),
meta: {
title: `pagesTitle.loading`
}
2024-03-08 10:33:06 +08:00
},
// {
// path: 'businessUser/eventView',
// name: 'eventView',
// component: () => import('@/views/pqs/voltageSags/sagGovern/businessUser/eventView.vue'),
// meta: {
// title: `router.eventView`
// }
// },
// {
// path: 'businessUser/eventView',
// name: 'eventView',
// component: () => import('@/views/pqs/voltageSags/sagGovern/businessUser/index.vue'),
// meta: {
// title: `router.eventView`
// }
// },
{
path: 'businessUserRouter',
name: '业务管理员页面',
meta: {
title: pageTitle('businessUser'),
icon: 'ep:management',
alwaysShow: true
},
children: [
{
path: 'eventView',
component: () => import('@/views/pqs/voltageSags/sagGovern/businessUser/eventView.vue'),
name: '暂降事件查看页面',
meta: {
title: pageTitle('router.eventView')
}
}
]
2024-02-19 13:44:32 +08:00
}
]
}
/*
*
* ./static push
*/
const staticRoutes: Array<RouteRecordRaw> = [
adminBaseRoute,
{
path: '/',
redirect: (to) => {
return {
name: 'adminMainLoading'
}
}
},
{
// 管理员登录页 - 不放在 adminBaseRoute.children 因为登录页不需要使用后台的布局
path: '/login',
name: 'login',
component: () => import('@/views/user/login.vue'),
meta: {
title: pageTitle('login')
}
},
{
path: '/:path(.*)*',
redirect: '/404'
},
{
path: '/404',
name: 'notFound',
component: () => import('@/views/common/error/404.vue'),
meta: {
title: pageTitle('notFound') // 页面不存在
}
},
{
// 后台找不到页面了-可能是路由未加载上
path: adminBaseRoutePath + ':path(.*)*',
redirect: (to) => {
return {
name: 'adminMainLoading',
params: {
to: JSON.stringify({
path: to.path,
query: to.query
})
}
}
}
}
]
export default staticRoutes