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, }, } export default api