yangyin
2024-11-08 f41e52e3debf30558d556dc0451776f5422fb9b8
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
window.route = [
    {
        name: 'Home',
        isKeepAlive: true,
        isAffix: false,
        path: '/home',
        component: '/project/ch/home/Home.vue',
        redirect: null,
        showTitle: false,
    },
    //应用场景(主场景根据当前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: false,
    },
    {
        name:'ShareAnswer',
        isKeepAlive: true,
        isAffix: false,
        path: '/share',
        component: '/project/ch/askAnswer/AskAnswer.vue',
        redirect: null,
        showTitle: false,
    }
 
];