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

19 lines
334 B

  1. // 我的成就相关接口
  2. const api = {
  3. // 我的成就-查询勋章列表
  4. queryMedalList: {
  5. url: '/medal/queryMedalList',
  6. method: 'GET',
  7. auth: true,
  8. },
  9. // 我的成就-点亮勋章
  10. lightMedal: {
  11. url: '/medal/lightMedal',
  12. method: 'POST',
  13. auth: true,
  14. limit : 500,
  15. showLoading : true,
  16. },
  17. }
  18. export default api