You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

80 lines
1.5 KiB

3 years ago
import BasicLayout from '@/layouts/home'
4 years ago
3 years ago
/**
* 读取./modules下的所有js文件并注册模块
*/
const requireModule = require.context('./modules', false, /\.js$/)
const modules = []
requireModule.keys().forEach(fileName => {
modules.push(requireModule(fileName).default)
})
4 years ago
const frameIn = [
// 默认路由配置
4 years ago
{
4 years ago
path: "/",
redirect: "/login"
4 years ago
},
4 years ago
{
4 years ago
path: "/",
4 years ago
component: () => BasicLayout,
4 years ago
meta: { title: "首页" },
4 years ago
children: []
4 years ago
},
3 years ago
...modules
4 years ago
];
4 years ago
/**
* 在主框架之外显示
*/
const frameOut = [
// 登录
4 years ago
{
4 years ago
path: "/login",
name: "login",
4 years ago
meta: {
4 years ago
title: "登录"
4 years ago
},
4 years ago
component: () => import("@/pages/account/login")
},
{
path: "/redirect",
name: "redirect",
component: () => import("@/pages/account/redirect")
3 years ago
},
{
name: `matchPreview`,
path: `/match/preview`,
component: () => import("@/pages/match/preview"),
meta: { title: "赛事预览" }
4 years ago
}
];
3 years ago
/**
* 错误页面
*/
4 years ago
3 years ago
const errorPage = [
{
path: '/403',
name: '403',
meta: {
title: '403'
},
component: () => import('@/pages/exception/error/403')
},
{
path: '*',
name: '404',
meta: {
title: '404'
},
component: () => import('@/pages/exception/error/404')
}
]
4 years ago
// 重新组织后导出
export default [
...frameIn,
3 years ago
...frameOut,
...errorPage
4 years ago
];