鸿宇研学生前端代码
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.
 
 
 

20 lines
334 B

// 我的成就相关接口
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