小说小程序前端代码仓库(小程序)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

58 lines
1.1 KiB

const api = {
// 点击更多任务
clickMoreTask: {
url: '/my_task/clickMoreTask',
method: 'POST',
auth: true,
limit : 1000,
showLoading: true,
},
// 点击签到任务
clickSignTask: {
url: '/my_task/clickSignTask',
method: 'GET',
auth: true,
limit : 1000,
showLoading: true,
},
// 获取更多任务列表
getMoreTaskList: {
url: '/my_task/getMoreTaskList',
method: 'GET',
auth: true,
},
// 获取更多任务记录列表
getMoreTaskRecordPage: {
url: '/my_task/getMoreTaskRecordPage',
method: 'GET',
auth: true,
},
// 获取我的推荐票数
getMyRecommendTicketNum: {
url: '/my_task/getMyRecommendTicketNum',
method: 'GET',
auth: true,
},
// 获取我的推荐任务列表
getSignTaskList: {
url: '/my_task/getSignTaskList',
method: 'GET',
auth: true,
},
// 获取我的推荐任务记录列表
getSignTaskRecordPage: {
url: '/my_task/getSignTaskRecordPage',
method: 'GET',
auth: true,
},
// 获取我当天是否以及签到
getSignTaskToday: {
url: '/my_task/getSignTaskToday',
method: 'GET',
auth: true,
},
}
export default api