diff --git a/api/apiRoute.js b/api/apiRoute.js index 4d2becd..6cf3ebe 100644 --- a/api/apiRoute.js +++ b/api/apiRoute.js @@ -462,6 +462,22 @@ export default { }) }, + //学生端-体测报告-列表 + xy_physicalTest(data = {}) { + let url = '/xy/physicalTest' + return http.get(url, data).then(res => { + return res; + }) + }, + + //学生端-体测报告-详情 + xy_physicalTestInfo(data = {}) { + let url = '/xy/physicalTest/info' + return http.get(url, data).then(res => { + return res; + }) + }, + diff --git a/pages/coach/student/physical_examination.vue b/pages/coach/student/physical_examination.vue index a9b7ef7..ff22531 100644 --- a/pages/coach/student/physical_examination.vue +++ b/pages/coach/student/physical_examination.vue @@ -1,4 +1,4 @@ - +