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
| import type { RouteRecordRaw } from 'vue-router';
|
| const routes: RouteRecordRaw[] = [
| {
| path: '/infra/job/log',
| component: () => import('#/views/infra/job/logger/index.vue'),
| name: 'InfraJobLog',
| meta: {
| title: '调度日志',
| icon: 'ant-design:history-outlined',
| activePath: '/infra/job',
| keepAlive: false,
| hideInMenu: true,
| },
| },
| {
| path: '/infra/codegen/edit',
| component: () => import('#/views/infra/codegen/edit/index.vue'),
| name: 'InfraCodegenEdit',
| meta: {
| title: '生成配置修改',
| icon: 'ic:baseline-view-in-ar',
| activePath: '/infra/codegen',
| keepAlive: true,
| hideInMenu: true,
| },
| },
| ];
|
| export default routes;
|
|