2024-03-08 17:59:45 +08:00
|
|
|
/* eslint-disable */
|
|
|
|
/* prettier-ignore */
|
|
|
|
// Generated by elegant-router
|
|
|
|
// Read more: https://github.com/soybeanjs/elegant-router
|
|
|
|
|
|
|
|
import type { RouteComponent } from "vue-router";
|
|
|
|
import type { LastLevelRouteKey, RouteLayout } from "@elegant-router/types";
|
|
|
|
|
|
|
|
import BaseLayout from "@/layouts/base-layout/index.vue";
|
|
|
|
import BlankLayout from "@/layouts/blank-layout/index.vue";
|
|
|
|
|
|
|
|
export const layouts: Record<RouteLayout, RouteComponent | (() => Promise<RouteComponent>)> = {
|
|
|
|
base: BaseLayout,
|
|
|
|
blank: BlankLayout,
|
|
|
|
};
|
|
|
|
|
|
|
|
export const views: Record<LastLevelRouteKey, RouteComponent | (() => Promise<RouteComponent>)> = {
|
|
|
|
403: () => import("@/views/_builtin/403/index.vue"),
|
|
|
|
404: () => import("@/views/_builtin/404/index.vue"),
|
|
|
|
500: () => import("@/views/_builtin/500/index.vue"),
|
|
|
|
login: () => import("@/views/_builtin/login/index.vue"),
|
|
|
|
about: () => import("@/views/about/index.vue"),
|
2024-03-21 10:57:53 +08:00
|
|
|
"function_hide-child_one": () => import("@/views/function/hide-child/one/index.vue"),
|
|
|
|
"function_hide-child_three": () => import("@/views/function/hide-child/three/index.vue"),
|
|
|
|
"function_hide-child_two": () => import("@/views/function/hide-child/two/index.vue"),
|
2024-03-08 17:59:45 +08:00
|
|
|
"function_multi-tab": () => import("@/views/function/multi-tab/index.vue"),
|
2024-03-26 11:47:11 +08:00
|
|
|
function_request: () => import("@/views/function/request/index.vue"),
|
|
|
|
"function_super-page": () => import("@/views/function/super-page/index.vue"),
|
2024-03-08 17:59:45 +08:00
|
|
|
function_tab: () => import("@/views/function/tab/index.vue"),
|
2024-03-26 11:47:11 +08:00
|
|
|
"function_toggle-auth": () => import("@/views/function/toggle-auth/index.vue"),
|
2024-04-22 22:37:15 +08:00
|
|
|
group: () => import("@/views/group/index.vue"),
|
2024-03-08 17:59:45 +08:00
|
|
|
home: () => import("@/views/home/index.vue"),
|
2024-04-22 23:58:22 +08:00
|
|
|
job_task: () => import("@/views/job/task/index.vue"),
|
2024-03-21 10:57:53 +08:00
|
|
|
manage_menu: () => import("@/views/manage/menu/index.vue"),
|
2024-03-08 17:59:45 +08:00
|
|
|
manage_role: () => import("@/views/manage/role/index.vue"),
|
|
|
|
"manage_user-detail": () => import("@/views/manage/user-detail/[id].vue"),
|
|
|
|
manage_user: () => import("@/views/manage/user/index.vue"),
|
|
|
|
"multi-menu_first_child": () => import("@/views/multi-menu/first_child/index.vue"),
|
|
|
|
"multi-menu_second_child_home": () => import("@/views/multi-menu/second_child_home/index.vue"),
|
2024-04-03 16:33:18 +08:00
|
|
|
namepase: () => import("@/views/namepase/index.vue"),
|
2024-04-17 23:20:57 +08:00
|
|
|
notify_recipient: () => import("@/views/notify/recipient/index.vue"),
|
|
|
|
notify_scene: () => import("@/views/notify/scene/index.vue"),
|
2024-03-30 17:07:04 +08:00
|
|
|
pods: () => import("@/views/pods/index.vue"),
|
2024-04-20 22:36:09 +08:00
|
|
|
retry_scene: () => import("@/views/retry/scene/index.vue"),
|
2024-04-21 12:45:12 +08:00
|
|
|
retry_task: () => import("@/views/retry/task/index.vue"),
|
2024-03-08 17:59:45 +08:00
|
|
|
"user-center": () => import("@/views/user-center/index.vue"),
|
2024-04-22 17:12:45 +08:00
|
|
|
workflow: () => import("@/views/workflow/index.vue"),
|
2024-03-08 17:59:45 +08:00
|
|
|
};
|