🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
## **获取一周课程表接口 getTimetableUrl** **接口描述** * 获取一周课程表接口 **请求URL** * [xxx.com/xxx](http://xxx.com/xxx) **请求方式** * GET **请求参数** | 参数名 | 类型 | 说明 | | --- | --- | --- | | deviceId | string | 设备序列号 | **返回参数** | 参数名 | 类型 | 说明 | | --- | --- | --- | | course| string | 课目 | | courseList| array | 课程列表| | timeId| string | 作息时间id| | week| number| 星期一,1| **返回示例** ``` { "status": 0, "msg": "success", "data": [ { "week": "1", "courseList": [ { "id": "", "type": "", "courseId": "", "teacherId": "", "timeId": "" } ] }, { "week": "2", "courseList": [ { "id": "", "type": "", "courseId": "", "teacherId": "", "timeId": "" } ] } ] } ``` 一下是老接口 ``` { "id":"", "courseId":"", "courseName":"", "teacherId":"", "teacherName":"", "startTime":"", "endTime":"" } ```