1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| const myRoutes = [
| {
| meta: {
| commonHeader: true,
| },
| path: '/my', name: 'my', component: () => import("@/views/my/index.vue"),
| children: [
| { path: '/my/dashboard', name: 'dashboard', component: () => import("@/views/my/dashboard.vue") },//我的资产
| { path: '/my/security', name: 'security', component: () => import('@/views/my/center.vue') },//帐户安全
| { path: '/my/payment', name: 'payment', component: () => import('@/views/my/payment.vue') },//收款方式
| { path: '/optionRecord', name: 'payment', component: () => import('@/views/wallet/components/optionRecord.vue') },//合约
| { path: '/my/universal', name: 'universal', component: () => import('@/views/my/universal.vue') },//通用
| { path: '/my/helpCenter', name: 'helpCenter', component: () => import("@/views/my/helpCenter.vue") }, //帮助中心
| { path: '/my/announcement', name: 'Announcement', component: () => import("@/views/my/announcement.vue") },//公告中心
| { path: '/my/change-password/:id', name: 'changePassword', component: () => import("@/views/my/change-password.vue") },//公告中心
| { path: '/my/advance-auth', name: 'advaceAuth', component: () => import("@/views/my/advance-auth.vue") },//高级认证
| ]
| },
| ];
|
| export { myRoutes };
|
|