123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- import { BASE_URL } from '@/config'
- const urlFn = v => BASE_URL + v
- const GET_TOKEN = urlFn('/api/kmt/login/wxlogin/scanlogin')
- const GET_UUIONID_TOKEN = urlFn('/api/kmt/login/unionidlogin')
- const GetInfo = urlFn('/api/kmt/correctSys/getMyInfo')
- const InfoWatch = urlFn('/api/kmt/correctSys/monitorTeacherList')
- const InfoWatchDay = urlFn('/api/kmt/correctSys/monitorOneDayList')
- const InfoWatchMoth = urlFn('/api/kmt/correctSys/monitorOneMonthList')
- const TeacherHomeworkList = urlFn('/api/kmt/correctSys/teacherHomeworkList')
- const TeacherAllotList = urlFn('/api/kmt/correctSys/teacherAllotList')
- const TeacherAllot = urlFn('/api/kmt/correctSys/teacherAllot')
- const UnallotHomeworkList = urlFn('/api/kmt/correctSys/unallotHomeworkList')
- const GetTeacherDetail = urlFn('/api/kmt/correctSys/getTeacherDetail')
- const GetStudentDetail = urlFn('/api/kmt/correctSys/getStudentDetail')
- const SuperManagerList = urlFn('/api/kmt/correctSys/getManagerList')
- const GetManagerDetail = urlFn('/api/kmt/correctSys/getManagerDetail')
- const Downgrade = urlFn('/api/kmt/correctSys/downgrade')
- const SuperApplyTeacherList = urlFn('/api/kmt/correctSys/applyTeacherList')
- const ApplyOperate = urlFn('/api/kmt/correctSys/applyOperate')
- const GetTeacherSalaryList = urlFn('/api/kmt/correctSys/getTeacherSalaryList')
- const DealCorrectTeacher = urlFn('/api/kmt/correctSys/dealCorrectTeacher')
- const GetAllotManagerList = urlFn('/api/kmt/correctSys/getAllotManagerList')
- const AllotTeacherToManager = urlFn('/api/kmt/correctSys/allotTeacherToManager')
- export {
- GET_TOKEN,
- GET_UUIONID_TOKEN,
- GetInfo,
- InfoWatch,
- InfoWatchDay,
- InfoWatchMoth,
- TeacherHomeworkList,
- TeacherAllotList,
- TeacherAllot,
- UnallotHomeworkList,
- GetTeacherDetail,
- GetStudentDetail,
- SuperManagerList,
- GetManagerDetail,
- Downgrade,
- SuperApplyTeacherList,
- ApplyOperate,
- GetTeacherSalaryList,
- DealCorrectTeacher,
- GetAllotManagerList,
- AllotTeacherToManager
- }
|