123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- const API_BASE = 'http://192.168.1.117:8089'
- module.exports = {
-
- wxLogin: API_BASE + '/v2/coach/login/wxLogin',
-
- loginByPassword: API_BASE + '/v2/coach/login/login',
-
-
-
- submitExtraLessonsForm: API_BASE + '/v2/sale/class/extraLessonsSubmit',
-
- getExtraLessonsStudentList: API_BASE + '/v2/sale/class/extraLessonsStudentList',
-
- getClassList: API_BASE + '/v2/sale/class/getClassList',
-
- getVenueList: API_BASE + '/v2/sale/class/getVenueList',
-
- getTimetableList: API_BASE + '/v2/sale/class/getClassSort',
-
- submitClassForm: API_BASE + '/v2/sale/class/create',
-
- getClassDetail: API_BASE + '/v2/sale/class/getDetail',
-
- classUpdate: API_BASE + '/v2/sale/class/update',
-
- deleteById: API_BASE + '/v2/sale/class/deleteById',
-
- getClassDetailShowList: API_BASE + '/v2/sale/class/getClassDetailShowList',
-
- insertClassShow: API_BASE + '/v2/sale/class/insertClassShow',
-
- deleteClassShow: API_BASE + '/v2/sale/class/deleteClassShow',
-
- getStudentDetail: API_BASE + '/v2/sale/class/getStudentDetail',
-
- submitCourseForm: API_BASE + '/v2/sale/class/addGrow',
-
- getSignStudentList: API_BASE + '/v2/sale/class/getSignStudentList',
-
- getOtherSignStudentList: API_BASE + '/v2/sale/class/getOtherSignStudentList',
-
- submitSignForm: API_BASE + '/v2/sale/class/signSubmit',
-
- classCourseWriteOff: API_BASE + '/v2/sale/class/classCourseWriteOff',
-
- leaveLessonsInfo: API_BASE + ' /v2/sale/class/leaveLessonsInfo',
-
- stuRenewalCardList: API_BASE + ' /v2/sale/class/stuRenewalCardList',
-
- openRenewalCard: API_BASE + ' /v2/sale/class/openRenewalCard',
-
- leaveLessonsEndOk: API_BASE + '/v2/sale/class/leaveLessonsEndOk',
-
- getMessageList: API_BASE + '/v2/coach/message/getMessageList',
-
- leaveLessonsOk: API_BASE + '/v2/coach/center/leaveLessonsOk',
-
-
- getEvaluateList: API_BASE + '/v2/coach/center/getRatingList',
-
- getEvaluateInfo: API_BASE + '/v2/coach/center/getRatingDetail',
-
- setSignRemark: API_BASE + '/v2/class/setSignRemark',
-
- getExtraLessonsList: API_BASE + '/v2/coach/center/getExtraLessonsList',
-
- getLeaveLessonsList: API_BASE + '/v2/coach/center/getLeaveLessonsList',
-
- getRenewList: API_BASE + '/v2/coach/center/getSignReminderList',
-
- getSignList: API_BASE + '/v2/coach/center/getRenewalReminderList',
-
- getSignStudentInfo: API_BASE + '/v2/coach/center/getSignStudentList',
-
- getRenewCommunicateList: API_BASE + '/v2/coach/center/getRenewalCommunicateRecordList',
-
- getSignCommunicateList: API_BASE + '/v2/coach/center/getSignCommunicateRecordList',
-
- submitRenewCommunicateForm: API_BASE + '/v2/coach/center/writeRenewalCommunicateRecord',
-
- submitSignCommunicateForm: API_BASE + '/v2/coach/center/writeSignCommunicateRecord',
-
- getRenewPercent: API_BASE + '/v2/coach/center/getRenewPercent',
-
- getRenewRankingList: API_BASE + '/v2/coach/center/getRenewRankingList',
-
- getSignPercent: API_BASE + '/v2/coach/center/getSignPercent',
-
- getSignRankingList: API_BASE + '/v2/coach/center/getSignRankingList',
-
-
-
- getServerImg: API_BASE + '/download/icon/',
-
- uploadFile: API_BASE + '/v2/common/file/uploadOne',
- }
|