diff --git a/api/apiRoute.js b/api/apiRoute.js index 8ed87fb..37bab48 100644 --- a/api/apiRoute.js +++ b/api/apiRoute.js @@ -143,6 +143,39 @@ export default { //↓↓↓↓↓↓↓↓↓↓↓↓-----教练接口相关-----↓↓↓↓↓↓↓↓↓↓↓↓ + + + + + + //添加作业 + jlPublishJob(data = {}) { + let url = '/class/jlPublishJob/add' + return http.get(url, data).then(res => { + return res; + }) + }, + //添加作业-学员列表 + jlGetStudentList(data = {}) { + let url = '/class/jlGetStudentList/list' + return http.get(url, data).then(res => { + return res; + }) + }, + //添加作业-获取课程列表 + jlGetCoursesList(data = {}) { + let url = '/class/jlGetCoursesList/list' + return http.get(url, data).then(res => { + return res; + }) + }, + //添加作业-获取班级列表 + jlGetClassesList(data = {}) { + let url = '/class/jlGetClasses/list' + return http.get(url, data).then(res => { + return res; + }) + }, //体测报告-详情 physicalTestInfo(data = {}) { let url = '/class/physicalTest/info' diff --git a/pages/coach/home/index.vue b/pages/coach/home/index.vue index 799bc30..0b910eb 100644 --- a/pages/coach/home/index.vue +++ b/pages/coach/home/index.vue @@ -4,7 +4,7 @@ 待办 - 发布作业 + 发布作业 diff --git a/pages/coach/job/add.vue b/pages/coach/job/add.vue index bff5e65..d15ea19 100644 --- a/pages/coach/job/add.vue +++ b/pages/coach/job/add.vue @@ -101,7 +101,7 @@ + \ No newline at end of file