🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
## **班级相册文件夹内图片 getPictureUrl** **接口描述** * 获取班级相册文件夹内图片接口 **请求URL** * [xxx.com/xxx](http://xxx.com/xxx) **请求方式** * GET **请求参数** | 参数名 | 是否必选| 类型 | 说明 | | --- | --- | --- |--- | | deviceId |是 | string | 设备序列号 | | picturesId|是 | string | 相册文件夹id| | currentPage| 否 | number | 当前页默认1 | | pageSize | 否|number|每页数量,默认10| **返回参数** | 参数名 | 类型 | 说明 | | --- | --- | --- | | name| string | 图片名称| | id| string | 图片id| | sort| string | 排序,数字越大越靠前| | addTime| string | 图片添加时间| | list | array | 数据列表 | | total | number | 总数量 | | totalPage | number | 总页数 | | pageSize |number|每页数量| | currentPage| number | 当前页 | **返回示例** 新接口 ``` { "status": 0, "msg": "success", "data": { "total": "1", "currentPage": "1", "totalPage": "1", "pageSize": "10", "list": [ { "id": "1", "name": "相册1", "sort": 1, "pictureUrl": "1", "addTime": 1585468316 } ] } } ``` 以下是老接口 ``` { "status":0, "msg":"获取数据成功", "serverTime":"1286676610", "data":{         "total":"1",         "currentPage":"1",         "totalPage":"1",         "pageSize":"10",         "list":[             {                 "pictureName":"第一个相册",                 "pictureId":"1",                 "cover ":"1",                 "pictureUrls":[                 ],                 "addTime":""             },             {                 "pictureName":"第一个相册",                 "pictureId":"1",                 "cover ":"1",                 "pictureUrls":[                 ],                 "addTime":""             }         ]     } } ```