2024-08-22 11:27:06 +08:00
|
|
|
import { RouteRecordRaw } from "vue-router";
|
|
|
|
|
import { HOME_URL, LOGIN_URL } from "@/config";
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* staticRouter (静态路由)
|
|
|
|
|
*/
|
|
|
|
|
export const staticRouter: RouteRecordRaw[] = [
|
|
|
|
|
{
|
|
|
|
|
path: "/",
|
2024-08-26 20:05:04 +08:00
|
|
|
redirect: HOME_URL,
|
2024-08-22 11:27:06 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: LOGIN_URL,
|
|
|
|
|
name: "login",
|
|
|
|
|
component: () => import("@/views/login/index.vue"),
|
|
|
|
|
meta: {
|
2024-08-26 20:05:04 +08:00
|
|
|
title: "登录",
|
|
|
|
|
},
|
2024-08-22 11:27:06 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: "/layout",
|
|
|
|
|
name: "layout",
|
|
|
|
|
component: () => import("@/layouts/index.vue"),
|
|
|
|
|
// component: () => import("@/layouts/indexAsync.vue"),
|
2024-08-26 20:05:04 +08:00
|
|
|
// redirect: HOME_URL,
|
|
|
|
|
children: [
|
|
|
|
|
{
|
|
|
|
|
path: "/plan",
|
|
|
|
|
name: "plan",
|
|
|
|
|
redirect:"/plan/planList",
|
|
|
|
|
children: [
|
|
|
|
|
{
|
|
|
|
|
path: "/plan/planList",
|
|
|
|
|
name: "planList",
|
|
|
|
|
component:()=> import("@/views/plan/planList/index.vue"),
|
|
|
|
|
meta: {
|
|
|
|
|
title: "检测计划列表",
|
|
|
|
|
icon: "List",
|
|
|
|
|
isLink: "",
|
|
|
|
|
isHide: false,
|
|
|
|
|
isFull: false,
|
|
|
|
|
isAffix: false,
|
|
|
|
|
isKeepAlive: false,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
2024-08-22 11:27:06 +08:00
|
|
|
];
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* errorRouter (错误页面路由)
|
|
|
|
|
*/
|
|
|
|
|
export const errorRouter = [
|
|
|
|
|
{
|
|
|
|
|
path: "/403",
|
|
|
|
|
name: "403",
|
|
|
|
|
component: () => import("@/components/ErrorMessage/403.vue"),
|
|
|
|
|
meta: {
|
2024-08-26 20:05:04 +08:00
|
|
|
title: "403页面",
|
|
|
|
|
},
|
2024-08-22 11:27:06 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: "/404",
|
|
|
|
|
name: "404",
|
|
|
|
|
component: () => import("@/components/ErrorMessage/404.vue"),
|
|
|
|
|
meta: {
|
2024-08-26 20:05:04 +08:00
|
|
|
title: "404页面",
|
|
|
|
|
},
|
2024-08-22 11:27:06 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: "/500",
|
|
|
|
|
name: "500",
|
|
|
|
|
component: () => import("@/components/ErrorMessage/500.vue"),
|
|
|
|
|
meta: {
|
2024-08-26 20:05:04 +08:00
|
|
|
title: "500页面",
|
|
|
|
|
},
|
2024-08-22 11:27:06 +08:00
|
|
|
},
|
|
|
|
|
// Resolve refresh page, route warnings
|
|
|
|
|
{
|
|
|
|
|
path: "/:pathMatch(.*)*",
|
2024-08-26 20:05:04 +08:00
|
|
|
component: () => import("@/components/ErrorMessage/404.vue"),
|
|
|
|
|
},
|
2024-08-22 11:27:06 +08:00
|
|
|
];
|