yangyin
2024-07-15 d02e22357c0d54c6ef5129be1d7bfb690de8ffe2
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
window.route = [
    {
        name: 'Home',
        isKeepAlive: true,
        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: '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: false,
    }
 
];