api.js 4.5 KB

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