api.js 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. // const API_BASE = 'https://xinghuolanqiu.com/newApi'
  2. // const API_BASE = 'http://192.168.1.126:30000'
  3. const API_BASE = 'http://192.168.1.117:8089'
  4. module.exports = {
  5. // 微信授权登录
  6. wxLogin: API_BASE + '/v2/coach/login/wxLogin',
  7. // 账号密码登录
  8. loginByPassword: API_BASE + '/v2/coach/login/login',
  9. // 提交补课表单
  10. submitExtraLessonsForm: API_BASE + '/v2/sale/class/extraLessonsSubmit',
  11. // 获取补课学员列表
  12. getExtraLessonsStudentList: API_BASE + '/v2/sale/class/extraLessonsStudentList',
  13. // 获取我的班级列表
  14. getClassList: API_BASE + '/v2/sale/class/getClassList',
  15. // 获取场馆列表列表
  16. getVenueList: API_BASE + '/v2/sale/class/getVenueList',
  17. // 获取我的排班列表
  18. getTimetableList: API_BASE + '/v2/sale/class/getClassSort',
  19. // 提交新建班级表单
  20. submitClassForm: API_BASE + '/v2/sale/class/create',
  21. // 获取班级详情
  22. getClassDetail: API_BASE + '/v2/sale/class/getDetail',
  23. // 班级信息修改
  24. classUpdate: API_BASE + '/v2/sale/class/update',
  25. // 班级删除
  26. deleteById: API_BASE + '/v2/sale/class/deleteById',
  27. // 获取班级近况
  28. getClassDetailShowList: API_BASE + '/v2/sale/class/getClassDetailShowList',
  29. // 教练近况发布
  30. insertClassShow: API_BASE + '/v2/sale/class/insertClassShow',
  31. // 教练近况删除
  32. deleteClassShow: API_BASE + '/v2/sale/class/deleteClassShow',
  33. // 获取学员详情
  34. getStudentDetail: API_BASE + '/v2/sale/class/getStudentDetail',
  35. // 提交历程表单
  36. submitCourseForm: API_BASE + '/v2/sale/class/addGrow',
  37. // 获取本课程学员列表
  38. getSignStudentList: API_BASE + '/v2/sale/class/getSignStudentList',
  39. // 获取非本课程学员列表
  40. getOtherSignStudentList: API_BASE + '/v2/sale/class/getOtherSignStudentList',
  41. // 提交签到表单
  42. submitSignForm: API_BASE + '/v2/sale/class/signSubmit',
  43. // 班级详情->扫码
  44. classCourseWriteOff: API_BASE + '/v2/sale/class/classCourseWriteOff',
  45. // 班级详情->请假详情
  46. leaveLessonsInfo: API_BASE + ' /v2/sale/class/leaveLessonsInfo',
  47. // 班级详情->续费卡列表
  48. stuRenewalCardList: API_BASE + ' /v2/sale/class/stuRenewalCardList',
  49. // 班级详情->续费卡->确认
  50. openRenewalCard: API_BASE + ' /v2/sale/class/openRenewalCard',
  51. // 班级详情-> 病假结束确认
  52. leaveLessonsEndOk: API_BASE + '/v2/sale/class/leaveLessonsEndOk',
  53. // 获取消息通知列表
  54. getMessageList: API_BASE + '/v2/coach/message/getMessageList',
  55. // 消息请假同意
  56. leaveLessonsOk: API_BASE + '/v2/coach/center/leaveLessonsOk',
  57. // 获取我的评价列表
  58. getEvaluateList: API_BASE + '/v2/coach/center/getRatingList',
  59. // 获取我的评价详情
  60. getEvaluateInfo: API_BASE + '/v2/coach/center/getRatingDetail',
  61. // 教练回复
  62. setSignRemark: API_BASE + '/v2/class/setSignRemark',
  63. // 获取我的补课记录列表
  64. getExtraLessonsList: API_BASE + '/v2/coach/center/getExtraLessonsList',
  65. // 获取我的请假记录列表
  66. getLeaveLessonsList: API_BASE + '/v2/coach/center/getLeaveLessonsList',
  67. // 获取我的续费提醒列表
  68. getRenewList: API_BASE + '/v2/coach/center/getSignReminderList',
  69. // 获取我的签到提醒列表
  70. getSignList: API_BASE + '/v2/coach/center/getRenewalReminderList',
  71. // 获取我的签到学员详情
  72. getSignStudentInfo: API_BASE + '/v2/coach/center/getSignStudentList',
  73. // 获取续费学员沟通记录列表
  74. getRenewCommunicateList: API_BASE + '/v2/coach/center/getRenewalCommunicateRecordList',
  75. // 获取签到学员沟通记录列表
  76. getSignCommunicateList: API_BASE + '/v2/coach/center/getSignCommunicateRecordList',
  77. // 提交续费学员沟通记录表单
  78. submitRenewCommunicateForm: API_BASE + '/v2/coach/center/writeRenewalCommunicateRecord',
  79. // 提交签到学员沟通记录表单
  80. submitSignCommunicateForm: API_BASE + '/v2/coach/center/writeSignCommunicateRecord',
  81. // 获取续费率
  82. getRenewPercent: API_BASE + '/v2/coach/center/getRenewPercent',
  83. // 获取续费率排名列表
  84. getRenewRankingList: API_BASE + '/v2/coach/center/getRenewRankingList',
  85. // 获取签到率
  86. getSignPercent: API_BASE + '/v2/coach/center/getSignPercent',
  87. // 获取签到率排名列表
  88. getSignRankingList: API_BASE + '/v2/coach/center/getSignRankingList',
  89. // 获取服务器端图片
  90. getServerImg: API_BASE + '/download/icon/',
  91. // 上传地址
  92. uploadFile: API_BASE + '/v2/common/file/uploadOne',
  93. }