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
| const wealthRoutes = [
| {
| meta: {
| commonHeader: true,
| },
| path: '/fundMa', name: 'fundMa', component: () => import("@/views/wealth/financialManage.vue"),//基金理财
| },
| {
| meta: {
| commonHeader: true,
| },
| path: '/fundMakc', name: 'FundManageKuangChi', component: () => import("@/views/wealth/newLockMiner.vue"),//矿池锁仓
| },
| {
| meta: {
| commonHeader: true,
| },
| path: '/pledgeRecord', name: 'pledgeRecord', component: () => import("@/views/wealth/pledgeRecord.vue"),// 质押记录
| },
| {
| meta: {
| commonHeader: true,
| },
| path: '/transactionRecord', name: 'transactionRecord', component: () => import("@/views/wealth/transactionRecord.vue"),// 交易管理
| },
| {
| meta: {
| commonHeader: true,
| },
| path: '/asset', name: 'asset', component: () => import("@/views/wealth/asset.vue"),// 资金管理
| },
| ];
|
| export { wealthRoutes };
|
|