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
| window.route = [
| {
| name: 'AmisEditor',
| isKeepAlive: true,
| isAffix: true,
| path: '/home',
| component: '/project/yw/lowCode/amis/AmisEditor.vue',
| },
| {
| name: 'SqlAmis',
| isKeepAlive: true,
| isAffix: false,
| path: '/lowCode/sqlAmis',
| component: '/project/yw/lowCode/sqlAmis/SqlAmis.vue',
| },
| // {
| // name: 'SqlAmisEdit',
| // isKeepAlive: true,
| // isAffix: false,
| // path: '/lowCode/sqlAmis/edit',
| // component: '/project/yw/lowCode/sqlAmis/edit/SqlAmisEdit.vue',
| // },
| //#region ====================== 数据管理 ======================
|
| {
| name: 'GraphIndex',
| isKeepAlive: true,
| isAffix: false,
| path: '/graph/graphIndex',
| component: '/project/yw/dataManage/graph/GraphIndex.vue',
| },
| {
| name: 'GraphDetail',
| isKeepAlive: true,
| isAffix: false,
| path: '/graph/graphDetail',
| component: '/project/yw/dataManage/graph/GraphDetail.vue',
| },
| {
| name: 'AddGraph',
| isKeepAlive: true,
| isAffix: false,
| path: '/graph/addGraph',
| component: '/project/yw/dataManage/graph/AddGraph.vue',
| },
| {
| name: 'Knowledge',
| isKeepAlive: true,
| isAffix: false,
| path: '/knowledge/knowledgeIndex',
| component: '/project/yw/dataManage/knowledge/Knowledge.vue',
| },
| //#endregion
| ];
|
|