index.js
2.18 KB
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
87
88
89
90
91
92
93
94
95
/*
* @Author: hookehuyr hookehuyr@gmail.com
* @Date: 2022-05-25 18:03:54
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2022-05-31 17:42:23
* @FilePath: /tswj/src/router/routes/modules/client/index.js
* @Description: 家长端展示页路由表
*/
const index = [{
path: '/',
name: '首页',
component: () => import('@/views/client/index.vue'),
meta: {
title: '童声无界',
name: 'indexPage'
},
children: []
}, {
path: '/client/index',
name: '客户端入口页',
component: () => import('@/views/client/index.vue'),
meta: {
title: '童声无界',
name: 'indexPage'
},
children: []
}, {
path: '/client/chooseSchool',
name: '客户端选择幼儿园页',
component: () => import('@/views/client/chooseSchool.vue'),
meta: {
title: '选择幼儿园'
},
children: []
}, {
path: '/client/donateList',
name: '幼儿园捐赠人捐赠金额排行榜',
component: () => import('@/views/client/donateList.vue'),
meta: {
title: '捐赠明细'
},
children: []
}, {
path: '/client/rankList',
name: '幼儿园儿童捐赠金额排行榜',
component: () => import('@/views/client/rankList.vue'),
meta: {
title: '排行榜'
},
children: []
}, {
path: '/client/chooseBook',
name: '客户端选择爱心书籍',
component: () => import('@/views/client/chooseBook.vue'),
meta: {
title: '爱心书籍'
},
children: []
}, {
path: '/client/bookDetail',
name: '客户端选择书籍下视频作品',
component: () => import('@/views/client/bookDetail.vue'),
meta: {
title: '书籍',
keepAlive: true,
name: 'bookDetail'
},
children: []
}, {
path: '/client/videoDetail',
name: '视频作品详情',
component: () => import('@/views/client/videoDetail.vue'),
meta: {
title: '作品'
},
children: [
{
path: 'comment',
name: '评论详情',
component: () => import('@/views/client/videoDetailComment.vue')
}
]
}, {
path: '/client/personIndex',
name: '个人首页',
component: () => import('@/views/client/personIndex.vue'),
meta: {
title: '个人首页',
keepAlive: true,
name: 'personIndex'
},
children: []
}]
export default index;