86 lines
2.5 KiB
TypeScript
Raw Normal View History

2023-07-16 19:14:41 +08:00
/**
* Note: 路由配置项
*
* path: '/path' // 路由路径
* name:'router-name' // 设定路由的名字,一定要填写不然使用<keep-alive>时会出现各种问题
* meta : {
2023-07-25 18:33:08 +08:00
title: 'title' // 设置该路由在侧边栏的名字
icon: 'icon-name' // 设置该路由的图标
activeMenu: '/system/user' // 当路由设置了该属性,则会高亮相对应的侧边栏。
query: '{"id": 1}' // 访问路由的默认传递参数
hidden: true // 当设置 true 的时候该路由不会在侧边栏出现
2023-07-16 19:14:41 +08:00
hideTab: true //当设置 true 的时候该路由不会在多标签tab栏出现
}
*/
2023-07-25 17:54:59 +08:00
import type { RouteRecordRaw } from "vue-router";
import { PageEnum } from "@/enums/pageEnum";
import Layout from "@/layout/default/index.vue";
2023-07-16 19:14:41 +08:00
2023-07-25 17:54:59 +08:00
export const LAYOUT = () => Promise.resolve(Layout);
2023-07-16 19:14:41 +08:00
2023-07-25 17:54:59 +08:00
export const INDEX_ROUTE_NAME = Symbol();
2023-07-16 19:14:41 +08:00
export const constantRoutes: Array<RouteRecordRaw> = [
2023-07-25 17:54:59 +08:00
{
path: "/:pathMatch(.*)*",
component: () => import("@/views/error/404.vue"),
},
{
path: PageEnum.ERROR_403,
component: () => import("@/views/error/403.vue"),
},
{
path: PageEnum.LOGIN,
component: () => import("@/views/account/login.vue"),
},
{
path: "/user",
component: LAYOUT,
children: [
{
path: "setting",
component: () => import("@/views/user/setting.vue"),
name: Symbol(),
meta: {
title: "个人设置",
},
2023-07-25 18:33:08 +08:00
}
2023-07-25 17:54:59 +08:00
],
},
// {
// path: '/dev_tools',
// component: LAYOUT,
// children: [
// {
// path: 'code/edit',
// component: () => import('@/views/dev_tools/code/edit.vue'),
// meta: {
// title: '编辑数据表',
// activeMenu: '/dev_tools/code'
// }
// }
// ]
// },
// {
// path: '/setting',
// component: LAYOUT,
// children: [
// {
// path: 'dict/data',
// component: () => import('@/views/setting/dict/data/index.vue'),
// meta: {
// title: '数据管理',
// activeMenu: '/setting/dict'
// }
// }
// ]
// }
];
2023-07-16 19:14:41 +08:00
export const INDEX_ROUTE: RouteRecordRaw = {
2023-07-25 17:54:59 +08:00
path: PageEnum.INDEX,
component: LAYOUT,
name: INDEX_ROUTE_NAME,
};