-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathindex.ts
202 lines (194 loc) · 4.05 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
import type { RouteRecordRaw } from "vue-router"
import { registerNavigationGuard } from "@/router/guard"
import { createRouter, createWebHashHistory, createWebHistory } from "vue-router"
const VITE_PUBLIC_PATH = import.meta.env.VITE_PUBLIC_PATH
const VITE_ROUTER_HISTORY = import.meta.env.VITE_ROUTER_HISTORY
/** 系统页面 */
export const systemRoutes: RouteRecordRaw[] = [
{
path: "/403",
component: () => import("@/pages/error/403.vue"),
name: "403",
meta: {
title: "403"
}
},
{
path: "/404",
component: () => import("@/pages/error/404.vue"),
name: "404",
meta: {
title: "404"
},
alias: "/:pathMatch(.*)*"
}
]
/** 业务页面 */
export const routes: RouteRecordRaw[] = [
{
path: "/login",
component: () => import("@/pages/login/index.vue"),
name: "Login",
meta: {
title: "登录"
}
},
{
path: "/",
component: () => import("@/pages/home/index.vue"),
name: "Home",
meta: {
title: "首页",
layout: {
navBar: {
showNavBar: false,
showLeftArrow: false
},
tabbar: {
showTabbar: true,
icon: "home-o"
}
}
}
},
{
path: "/me",
component: () => import("@/pages/me/index.vue"),
name: "Me",
meta: {
title: "我的",
layout: {
navBar: {
showNavBar: true,
showLeftArrow: false
},
tabbar: {
showTabbar: true,
icon: "user-o"
},
footer: true
}
}
}
]
/** 示例页面 */
export const demoRoutes: RouteRecordRaw[] = [
{
path: "/keep-alive",
component: () => import("@/pages/demo/keep-alive.vue"),
name: "KeepAlive",
meta: {
title: "路由缓存",
keepAlive: true,
layout: {
navBar: {
showNavBar: true,
showLeftArrow: true
}
}
}
},
{
path: "/watermark",
component: () => import("@/pages/demo/watermark.vue"),
name: "Watermark",
meta: {
title: "带防御的水印",
layout: {
navBar: {
showNavBar: true,
showLeftArrow: true
}
}
}
},
{
path: "/permission",
component: () => import("@/pages/demo/permission.vue"),
name: "Permission",
meta: {
title: "按钮级权限",
layout: {
navBar: {
showNavBar: true,
showLeftArrow: true
}
}
}
},
{
path: "/no-permission-page",
component: () => {},
name: "NoPermissionPage",
meta: {
title: "因无权限而进不去的页面",
roles: ["SuperAdmin"]
}
},
{
path: "/color",
component: () => import("@/pages/demo/color.vue"),
name: "Color",
meta: {
title: "灰色模式、色弱模式",
layout: {
navBar: {
showNavBar: true,
showLeftArrow: true
}
}
}
},
{
path: "/i18n",
component: () => import("@/pages/demo/i18n.vue"),
name: "I18n",
meta: {
title: "国际化 / i18n",
layout: {
navBar: {
showNavBar: true,
showLeftArrow: true
}
}
}
}
]
/** 空示例页面 */
export const emptyDemoRoutes: RouteRecordRaw[] = [
{
path: "/markdown",
component: () => import("@/pages/demo/markdown.vue"),
name: "Markdown",
meta: {
title: "Markdown 解析",
layout: {
navBar: {
showNavBar: true,
showLeftArrow: true
}
}
}
},
{
path: "/chart",
component: () => import("@/pages/demo/chart.vue"),
name: "Chart",
meta: {
title: "图表",
layout: {
navBar: {
showNavBar: true,
showLeftArrow: true
}
}
}
}
]
/** 路由实例 */
export const router = createRouter({
history: VITE_ROUTER_HISTORY === "hash" ? createWebHashHistory(VITE_PUBLIC_PATH) : createWebHistory(VITE_PUBLIC_PATH),
routes: [...systemRoutes, ...routes, ...demoRoutes, ...emptyDemoRoutes]
})
// 注册路由导航守卫
registerNavigationGuard(router)