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

4 years ago
import index from "./modules/index";
import cityPartner from "./modules/cityPartner";
import devPlatform from "./modules/devPlatform";
4 years ago
import appraisal from "./modules/appraisal";
import station from "./modules/station";
import ass from "./modules/ass";
import record from "./modules/record";
import setting from "./modules/setting";
import course from "./modules/course";
import info from "./modules/info";
import match from "./modules/match";
import log from "./modules/log";
4 years ago
const frameIn = [
{
4 years ago
path: "/",
redirect: "/index"
4 years ago
},
index,
cityPartner,
devPlatform,
4 years ago
appraisal,
4 years ago
station,
ass,
record,
4 years ago
setting,
course,
info,
match,
log
4 years ago
];
4 years ago
/**
* 在主框架之外显示
*/
const frameOut = [
// 登录
{
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")
4 years ago
}
];
/**
* 错误页面
*/
const errorPage = [
{
4 years ago
path: "/403",
name: "403",
4 years ago
meta: {
4 years ago
title: "403"
4 years ago
},
4 years ago
component: () => import("@/pages/exception/error/403")
4 years ago
},
{
4 years ago
path: "*",
name: "404",
4 years ago
meta: {
4 years ago
title: "404"
4 years ago
},
4 years ago
component: () => import("@/pages/exception/error/404")
4 years ago
}
];
// 导出需要显示菜单的
export const frameInRoutes = frameIn;
// 重新组织后导出
export default [
...frameIn,
...frameOut,
...errorPage
];