2023-03-04 09:16:33 +08:00
|
|
|
import { RouteRecordRaw } from "vue-router";
|
|
|
|
|
import { HOME_URL, LOGIN_URL } from "@/config/config";
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* staticRouter(静态路由)
|
|
|
|
|
*/
|
|
|
|
|
export const staticRouter: RouteRecordRaw[] = [
|
|
|
|
|
{
|
|
|
|
|
path: "/",
|
|
|
|
|
redirect: HOME_URL
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: LOGIN_URL,
|
|
|
|
|
name: "login",
|
|
|
|
|
component: () => import("@/views/login/index.vue"),
|
|
|
|
|
meta: {
|
|
|
|
|
title: "登录"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: "/layout",
|
|
|
|
|
name: "layout",
|
|
|
|
|
component: () => import("@/layouts/index.vue"),
|
|
|
|
|
// component: () => import("@/layouts/indexAsync.vue"),
|
|
|
|
|
redirect: HOME_URL,
|
|
|
|
|
children: [
|
|
|
|
|
{
|
2023-03-06 11:13:57 +08:00
|
|
|
path: "/system",
|
|
|
|
|
name: "system",
|
2023-03-07 16:16:50 +08:00
|
|
|
component: () => import("@/views/jxjview/system/index.vue")
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: "/dictionary",
|
|
|
|
|
name: "dictionary",
|
|
|
|
|
component: () => import("@/views/jxjview/dictionary/index.vue")
|
|
|
|
|
},
|
2023-03-08 09:13:31 +08:00
|
|
|
{ path: "/dictionary/detail", name: "dicDetail", component: () => import("@/views/jxjview/dictionary/detail.vue") },
|
|
|
|
|
{ path: "/appmanage", name: "appManage", component: () => import("@/views/jxjview/appmanage/index.vue") }
|
2023-03-04 09:16:33 +08:00
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* errorRouter(错误页面路由)
|
|
|
|
|
*/
|
|
|
|
|
export const errorRouter = [
|
|
|
|
|
{
|
|
|
|
|
path: "/403",
|
|
|
|
|
name: "403",
|
|
|
|
|
component: () => import("@/components/ErrorMessage/403.vue"),
|
|
|
|
|
meta: {
|
|
|
|
|
title: "403页面"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: "/404",
|
|
|
|
|
name: "404",
|
|
|
|
|
component: () => import("@/components/ErrorMessage/404.vue"),
|
|
|
|
|
meta: {
|
|
|
|
|
title: "404页面"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: "/500",
|
|
|
|
|
name: "500",
|
|
|
|
|
component: () => import("@/components/ErrorMessage/500.vue"),
|
|
|
|
|
meta: {
|
|
|
|
|
title: "500页面"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
// 解决刷新页面,路由警告
|
|
|
|
|
{
|
|
|
|
|
path: "/:pathMatch(.*)*",
|
|
|
|
|
component: () => import("@/components/ErrorMessage/404.vue")
|
|
|
|
|
}
|
|
|
|
|
];
|