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

23 lines
486 B

  1. // 成长档案相关接口
  2. const api = {
  3. // 成长档案-查询成长档案列表
  4. queryExperienceList: {
  5. url: '/experience/queryExperienceList',
  6. method: 'GET',
  7. },
  8. // 成长档案-查询成长档案详情
  9. queryExperienceById: {
  10. url: '/experience/queryExperienceById',
  11. method: 'GET',
  12. },
  13. // 成长档案-新增成长档案
  14. addExperience: {
  15. url: '/experience/addExperience',
  16. method: 'POST',
  17. auth: true,
  18. limit : 500,
  19. showLoading : true,
  20. },
  21. }
  22. export default api