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
| const c2cRoutes = [
| {
| // c2c
| path: "/c2c",
| meta: {
| commonHeader: true,
| },
| component: () => import("@/views/c2c/index.vue"),
| children: [
| {
| // 一键买币自选区
| path: "/c2c/wantBuy",
| component: () => import("@/views/c2c/children/wantBuy/index.vue"),
| },
|
| {
| // 一键买币 - c2c订单
| path: "/c2c/order",
| component: () => import("@/views/c2c/children/c2c-order/index.vue"),
| },
|
| {
| // 一键买币 - 快捷区
| path: "/c2c/fastBuy",
| component: () => import("@/views/c2c/children/fastBuy/index.vue"),
| },
|
| {
| // 一键买币 - 下单成功
| path: "/c2c/orderSuccess",
| component: () => import("@/views/c2c/children/orderSuccess/index.vue"),
| },
| {
| // 用户中心
| path: "/c2c/user",
| component: () => import("@/views/c2c/children/user/index.vue"),
| },
| ],
| },
| ];
|
| export { c2cRoutes };
|
|