route.js
5.6 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
export default [{
path: '/',
name: '首页',
component: () => import('./views/client/index.vue'),
meta: {
title: '童声无界'
},
children: []
}, {
path: '/client/index',
name: '客户端入口页',
component: () => import('./views/client/index.vue'),
meta: {
title: '童声无界'
},
children: []
}, {
path: '/client/chooseSchool',
name: '客户端选择幼儿园页',
component: () => import('./views/client/chooseSchool.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/privacyNotice',
name: '客户端上传作品前须知',
component: () => import('./views/client/privacyNotice.vue'),
meta: {
title: '活动说明'
},
children: []
}, {
path: '/client/verifyPage',
name: '客户端上传作品/留言前实名认证',
component: () => import('./views/client/verifyPage.vue'),
meta: {
title: '实名认证'
},
children: []
}, {
path: '/client/finishUpload',
name: '客户端上传作品成功跳转页面',
component: () => import('./views/client/finishUpload.vue'),
meta: {
title: '作品上传'
},
children: []
}, {
path: '/client/wechatpayCallback',
name: '微信付款成功后跳转页面',
component: () => import('./views/client/wechatpayCallback.vue'),
meta: {
title: '微信支付'
},
children: []
}, {
path: '/client/donateCertificate',
name: '捐书成功后提示证书页面',
component: () => import('./views/client/donateCertificate.vue'),
meta: {
title: '捐赠证书'
},
children: []
}, {
path: '/client/personIndex',
name: '个人首页',
component: () => import('./views/client/personIndex.vue'),
meta: {
title: '个人首页',
keepAlive: true,
name: 'personIndex'
},
children: []
}, {
path: '/me/index',
name: '我的信息',
component: () => import('./views/me/index.vue'),
meta: {
title: '我的信息'
},
children: []
}, {
path: '/me/verifyUser',
name: '实名认证',
component: () => import('./views/me/verifyUser.vue'),
meta: {
title: '实名认证'
},
children: []
}, {
path: '/me/handleUser',
name: '新增/编辑儿童',
component: () => import('./views/me/handleUser.vue'),
meta: {
title: '儿童信息'
},
children: []
}, {
path: '/me/donateList',
name: '我的捐赠',
component: () => import('./views/me/donateList.vue'),
meta: {
title: '我的捐赠'
},
children: []
}, {
path: '/me/videoList',
name: '我的作品',
component: () => import('./views/me/videoList.vue'),
meta: {
title: '我的作品'
},
children: []
}, {
path: '/me/subscribe',
name: '我的订阅',
component: () => import('./views/me/subscribe.vue'),
meta: {
title: '我的订阅'
},
children: []
}, {
path: '/me/collection',
name: '我的收藏',
component: () => import('./views/me/collection.vue'),
meta: {
title: '我的收藏'
},
children: []
}, {
path: '/me/like',
name: '我的点赞',
component: () => import('./views/me/like.vue'),
meta: {
title: '我的点赞'
},
children: []
}, {
path: '/me/message',
name: '我的留言',
component: () => import('./views/me/message.vue'),
meta: {
title: '我的留言',
keepAlive: true,
name: 'message'
},
children: []
}, {
path: '/me/callMe',
name: '@我的',
component: () => import('./views/me/callMe.vue'),
meta: {
title: '@我的',
keepAlive: true,
name: 'callMe'
},
children: []
}, {
path: '/me/followList',
name: '关注',
component: () => import('./views/me/followList.vue'),
meta: {
title: '关注'
},
children: []
}, {
path: '/me/unwatchList',
name: '未看作品',
component: () => import('./views/me/unwatchList.vue'),
meta: {
title: '未看作品',
keepAlive: true,
name: 'unwatchList'
},
children: []
}, {
path: '/auth',
name: '授权跳转页',
component: () => import('./views/auth.vue'),
meta: {
title: '微信授权'
},
children: []
}, {
path: '/business/auditVideo',
name: '视频审核',
component: () => import('./views/business/auditVideo.vue'),
meta: {
title: '视频审核'
},
children: []
}, {
path: '/business/index',
name: '幼儿园所有上传视频',
component: () => import('./views/business/index.vue'),
meta: {
title: '幼儿园'
},
children: []
}, {
path: '/business/login',
name: '登录',
component: () => import('./views/business/login.vue'),
meta: {
title: '登录'
},
children: []
}, {
path: '/business/me',
name: '我的',
component: () => import('./views/business/me.vue'),
meta: {
title: '我的'
},
children: []
}, {
path: '/business/myVideo',
name: '我的视频',
component: () => import('./views/business/myVideo.vue'),
meta: {
title: '我的视频'
},
children: []
}, {
path: '/image',
name: 'html转图片',
component: () => import('./views/html2canvas.vue'),
meta: {
title: ''
}
}];