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
| window.route = [
| {
| name: 'Home',
| isKeepAlive: true,
| isAffix: false,
| path: '/home',
| component: '/project/ch/home/Home.vue',
| redirect: null,
| showTitle: false,
| },
|
| {
| name: 'WorkspaceSituation',
| isKeepAlive: true,
| isAffix: false,
| path: '/workspace/situation',
| component: '/project/ch/workspace/situation/index.vue',
| redirect: null,
| showTitle: true,
| },
|
| {
| name: 'GisSituation',
| isKeepAlive: true,
| isAffix: false,
| path: '/gis/situation',
| component: '/project/ch/gis/situation/index.vue',
| redirect: null,
| showTitle: true,
| },
| //应用场景(主场景根据当前ID显示次场景)
| {
| name: 'Scenario',
| isKeepAlive: false,
| isAffix: false,
| path: '/Scenario',
| component: '/project/ch/home/Scenario.vue',
| redirect: null,
| showTitle: true,
| },
| //应用场景(主场景显示所有的次场景)
| {
| name: 'AllScenario',
| isKeepAlive: false,
| isAffix: false,
| path: '/AllScenario',
| component: '/project/ch/home/AllScenario.vue',
| redirect: null,
| showTitle: true,
| },
| //应用场景详情
| {
| name: 'ScenarioDetails',
| isKeepAlive: false,
| isAffix: false,
| path: '/usage_scenario/detail',
| component: '/project/ch/home/ScenarioDetails.vue',
| redirect: null,
| showTitle: true,
| },
| {
| name: 'AboutUs',
| isKeepAlive: false,
| isAffix: false,
| path: '/AboutUs',
| component: '/project/ch/home/AboutUs.vue',
| redirect: null,
| showTitle: true,
| },
|
| {
| name: 'AskAnswer',
| isKeepAlive: true,
| isAffix: false,
| path: '/ask_answer',
| component: '/project/ch/askAnswer/AskAnswer.vue',
| redirect: null,
| showTitle: true,
| },
| {
| name:'ShareAnswer',
| isKeepAlive: true,
| isAffix: false,
| path: '/share',
| component: '/project/ch/askAnswer/AskAnswer.vue',
| redirect: null,
| showTitle: false,
| }
|
| ];
|
|