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

33 lines
605 B

  1. // 成员管理相关接口
  2. const api = {
  3. // 成员管理-查询绑定成员列表
  4. queryBindList: {
  5. url: '/bind/queryBindList',
  6. method: 'GET',
  7. auth: true,
  8. },
  9. // 成员管理-查询绑定人信息
  10. queryBindUser: {
  11. url: '/bind/queryBindUser',
  12. method: 'GET',
  13. auth: true,
  14. },
  15. // 成员管理-绑定申请
  16. addBind: {
  17. url: '/bind/addBind',
  18. method: 'POST',
  19. auth: true,
  20. limit : 500,
  21. showLoading : true,
  22. },
  23. // 成员管理-审批绑定申请
  24. updateBind: {
  25. url: '/bind/updateBind',
  26. method: 'POST',
  27. auth: true,
  28. limit : 500,
  29. showLoading : true,
  30. },
  31. }
  32. export default api