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

15 lines
322 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. export default api