🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
## **获取一周考勤数据接口 getLogUrl** **接口描述** * 获取班级一周考勤报表,自然周,从每周一开始计算 **请求URL** * [xxx.com/xxx](http://xxx.com/xxx) **请求方式** * GET **请求参数** | 参数名 | 类型 | 说明 | | --- | --- | --- | | deviceId | string | 设备序列号 | **返回参数** | 参数名 | 类型 | 说明 | | --- | --- | --- | | late| number| 迟到 | | attendence| number| 出勤 | | absent| number| 缺勤 | **返回示例** ~~~ { "status": 0, "msg": "success", "data": [ { "week": "1", "late": "2", "attendence": "3", "absent": "3" }, { "week": "2", "late": "", "attendence": "", "absent": "" } ] } ~~~