action.js
1.24 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
/*
* @Author: hookehuyr hookehuyr@gmail.com
* @Date: 2022-05-25 18:09:09
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2022-06-09 23:04:12
* @FilePath: /tswj/src/router/routes/modules/client/action.js
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
*/
const action = [{
path: '/client/privacyNotice',
name: '客户端上传作品前须知',
component: () => import('@/views/client/privacyNotice.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: []
}]
export default action;