menu.ts
2.42 KB
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
import { resultSuccess } from '../_util';
import { MockMethod } from 'vite-plugin-mock';
const dashboardRoute = {
path: '/dashboard',
name: 'Dashboard',
component: 'PAGE_LAYOUT',
redirect: '/dashboard/welcome',
meta: {
icon: 'ant-design:home-outlined',
title: 'Dashboard',
},
children: [
{
path: '/welcome',
name: 'Welcome',
component: '/dashboard/welcome/index',
meta: {
title: '欢迎页',
affix: true,
},
},
],
};
const frontRoute = {
path: '/front',
name: 'PermissionFrontDemo',
meta: {
title: '基于前端权限',
},
children: [
{
path: 'page',
component: '/demo/permission/front/index',
meta: {
title: '页面权限',
},
},
{
path: 'btn',
component: '/demo/permission/front/Btn',
meta: {
title: '按钮权限',
},
},
{
path: 'auth-pageA',
component: '/demo/permission/front/AuthPageA',
meta: {
title: '权限测试页A',
},
},
{
path: 'auth-pageB',
component: '/demo/permission/front/AuthPageB',
meta: {
title: '权限测试页B',
},
},
],
};
const backRoute = {
path: '/back',
name: 'PermissionBackDemo',
meta: {
title: '基于后台权限',
},
children: [
{
path: 'page',
component: '/demo/permission/back/index',
meta: {
title: '页面权限',
},
},
{
path: 'btn',
component: '/demo/permission/back/Btn',
meta: {
title: '按钮权限',
},
},
],
};
const authRoute = {
path: '/permission',
name: 'Permission',
component: 'PAGE_LAYOUT',
redirect: '/permission/front/page',
meta: {
icon: 'ant-design:home-outlined',
title: '权限管理',
},
children: [frontRoute, backRoute],
};
const authRoute1 = {
path: '/permission',
name: 'Permission',
component: 'PAGE_LAYOUT',
redirect: '/permission/front/page',
meta: {
icon: 'ant-design:home-outlined',
title: '权限管理',
},
children: [backRoute],
};
export default [
{
url: '/api/getMenuListById',
timeout: 1000,
method: 'get',
response: ({ query }) => {
const { id } = query;
if (!id || id === '1') {
return resultSuccess([dashboardRoute, authRoute]);
}
if (id === '2') {
return resultSuccess([dashboardRoute, authRoute1]);
}
},
},
] as MockMethod[];