// 我的成就相关接口 const api = { // 我的成就-查询勋章列表 queryMedalList: { url: '/medal/queryMedalList', method: 'GET', auth: true, }, // 我的成就-点亮勋章 lightMedal: { url: '/medal/lightMedal', method: 'POST', auth: true, limit : 500, showLoading : true, }, } export default api