wujingjing
2024-06-27 6fad8b0bb977ee20127ee8bd164c3298ee689160
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
window.route = [
    {
        name: 'Home',
        isKeepAlive: false,
        isAffix: false,
        path: '/home',
        component: '/project/ch/home/Home.vue',
        redirect: null,
        showTitle: false,
    },
    {
        name: 'Scenario',
        isKeepAlive: false,
        isAffix: false,
        path: '/Scenario',
        component: '/project/ch/home/Scenario.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: false,
        isAffix: false,
        path: '/ask_answer',
        component: '/project/ch/askAnswer/AskAnswer.vue',
        redirect: null,
        showTitle: true,
    }
 
];