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
| const homeChildRoutes = [
| {
| path: "/index",
| name: "exchange-homepage",
| meta: {
| commonHeader: true,
| },
| component: () => import("@/views/exchangeHomePage/index.vue"),
| }, //交易页首页
| {
| path: "/aboutUs",
| name: "aboutUs",
| meta: {
| commonHeader: true,
| },
| component: () => import("@/views/exchangeHomePage/other/Introduction.vue"),
| }, //关于我们
| {
| path: "/serviceTerms",
| name: "serviceTerms",
| meta: {
| commonHeader: true,
| },
| component: () => import("@/views/exchangeHomePage/other/serviceTerms.vue"),
| }, //服务协议
| {
| path: "/privacy",
| name: "privacy",
| meta: {
| commonHeader: true,
| },
| component: () => import("@/views/exchangeHomePage/other/privacy1.vue"),
| }, //隐私声明
| {
| path: "/clause",
| name: "clause",
| meta: {
| commonHeader: true,
| },
| component: () => import("@/views/exchangeHomePage/other/clause.vue"),
| }, //使用条款
|
| {
| path: "/riskStatement",
| name: "riskStatement",
| meta: {
| commonHeader: true,
| },
| component: () => import("@/views/exchangeHomePage/other/riskStatement.vue"),
| }, //风险声明
| {
| path: "/reminder",
| name: "reminder",
| meta: {
| commonHeader: true,
| },
| component: () => import("@/views/exchangeHomePage/other/reminder.vue"),
| }, //温馨提示
| {
| path: "/purchase",
| name: "purchase",
| meta: {
| commonHeader: true,
| },
| component: () => import("@/views/exchangeHomePage/other/purchase.vue"),
| }, //购置与转换
| {
| path: "/help",
| name: "help",
| meta: {
| commonHeader: true,
| },
| component: () => import("@/views/exchangeHomePage/other/help.vue"),
| }, //帮助
| ];
|
| const exchangeHomeRoutes = [
| {
| path: "/",
| redirect: "/index",
| component: () => import("@/views/exchangeHomePage/index.vue"),
| children: homeChildRoutes,
| },
| ];
|
| export { exchangeHomeRoutes };
|
|