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
| import type { RouteRecordStringComponent } from '@vben/types';
|
| import { $t } from '@vben/locales';
|
| /**
| * 该文件放非后台返回的路由 比如个人中心 等需要跳转显示的页面
| */
| const localRoutes: RouteRecordStringComponent[] = [
| {
| component: '/_core/profile/index',
| meta: {
| icon: 'mingcute:profile-line',
| title: $t('ui.widgets.profile'),
| hideInMenu: true,
| },
| name: 'Profile',
| path: '/profile',
| },
| {
| component: '/system/oss-config/index',
| meta: {
| activePath: '/system/oss',
| icon: 'ant-design:setting-outlined',
| title: 'oss配置',
| hideInMenu: true,
| },
| name: 'OssConfig',
| path: '/system/oss-config',
| },
| {
| component: '/tool/gen/edit-gen',
| meta: {
| activePath: '/tool/gen',
| icon: 'tabler:code',
| title: '生成配置',
| hideInMenu: true,
| },
| name: 'GenConfig',
| path: '/code-gen/edit/:tableId',
| },
| {
| component: '/system/role-assign/index',
| meta: {
| activePath: '/system/role',
| icon: 'eos-icons:role-binding-outlined',
| title: '分配角色',
| hideInMenu: true,
| },
| name: 'RoleAssign',
| path: '/system/role-assign/:roleId',
| },
| {
| component: '/workflow/components/flow-designer',
| meta: {
| activePath: '/workflow/processDefinition',
| icon: 'fluent-mdl2:flow',
| title: '流程设计',
| hideInMenu: true,
| },
| name: 'WorkflowDesigner',
| path: '/workflow/designer',
| },
| /**
| * 需要添加iframe路由 同目录的./workflow-iframe.ts
| */
| {
| component: 'workflow/leave/leave-form',
| meta: {
| icon: 'flat-color-icons:leave',
| title: '请假申请',
| activePath: '/demo/leave',
| hideInMenu: true,
| },
| name: 'WorkflowLeaveIndex',
| path: '/workflow/leaveEdit/index',
| },
| ];
|
| /**
| * 这里放本地路由
| */
| export const localMenuList: RouteRecordStringComponent[] = [
| {
| component: 'BasicLayout',
| meta: {
| order: -1,
| title: 'page.dashboard.title',
| // 不使用基础布局(仅在顶级生效)
| noBasicLayout: true,
| },
| name: 'Dashboard',
| path: '/',
| redirect: '/analytics',
| children: [
| {
| name: 'Analytics',
| path: '/analytics',
| component: '/dashboard/analytics/index',
| meta: {
| affixTab: true,
| title: 'page.dashboard.analytics',
| },
| },
| {
| name: 'Workspace',
| path: '/workspace',
| component: '/dashboard/workspace/index',
| meta: {
| title: 'page.dashboard.workspace',
| },
| },
| // {
| // name: 'VbenDocument',
| // path: '/vben-admin/document',
| // component: 'IFrameView',
| // meta: {
| // icon: 'lucide:book-open-text',
| // iframeSrc: 'https://dapdap.top',
| // keepAlive: true,
| // title: $t('demos.vben.document'),
| // },
| // },
| ],
| },
| // {
| // component: '/_core/about/index',
| // meta: {
| // icon: 'lucide:copyright',
| // order: 9999,
| // title: $t('demos.vben.about'),
| // },
| // name: 'About',
| // path: '/vben-admin/about',
| // },
| ...localRoutes,
| ];
|
|