简要描述:
请求域名:
- http://xx.com
请求URL:
POST/plugin.store-projects-qrchain.frontend.qrchain.member-qr-list
参数:
参数名 | 是否必须 | 类型 | 说明 |
---|
返回示例:
正确时返回:
{
"result": 1,
"msg": "",
"data": {
"current_page": 1,
"data": [
{
"id": 1,
"order_id": 257,
"uid": 11,
"qr_order": {
"id": 1,
"order_id": 257,
"qr_number": 1,
"member_id": 11,
"status": 1,
"verify_time": "1970-01-27 01:17:02",
"lock_name": "已锁定",
"check_name": "已核销",
"goods": {
"id": 295,
"title": "测试22233",
"thumb": "http://www.shop777.com/static/upload/images/1/2022/11/046d8b5e840c7daab9de3095272a95bb.jpg",
"status_name": null
}
},
"has_one_customer": {
"uid": 11,
"nickname": "13*******72",
"avatar": "http://www.shop777.com/static/images/photo-mr.jpg",
"avatar_image": "http://www.shop777.com/static/images/photo-mr.jpg",
"username": "13*******72"
}
}
],
"first_page_url": "http://www.shop777.com/addons/yun_shop/api.php?page=1",
"from": 1,
"last_page": 1,
"last_page_url": "http://www.shop777.com/addons/yun_shop/api.php?page=1",
"links": [
{
"url": null,
"label": "« 上一页",
"active": false
},
{
"url": "http://www.shop777.com/addons/yun_shop/api.php?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "下一页 »",
"active": false
}
],
"next_page_url": null,
"path": "http://www.shop777.com/addons/yun_shop/api.php",
"per_page": 15,
"prev_page_url": null,
"to": 1,
"total": 1
},
"validate_page": {
"is_bind_mobile": 0,
"invite_page": 0,
"is_invite": 1,
"is_login": 1,
"invite_mobile": 1,
"bind_address": {
"is_bind_address": 0,
"bind_address_type": 0,
"bind_address_page": []
},
"need_video": 0,
"force_bind_car": 0,
"bind_mobile_page": [],
"is_level_compel": 0
}
}
参数名 | 类型 | 说明 |
---|---|---|
result | Integer | 接口请求状态码,1表示成功 |
msg | String | 接口返回消息,空字符串表示无特殊提示 |
data | Object | 核心数据对象 |
data.current_page | Integer | 当前页码(示例值:1) |
data.data | Array | 数据列表,包含订单信息数组 |
├─ id | Integer | 订单唯一标识符(示例值:1) |
├─ order_id | Integer | 关联订单编号(示例值:257) |
├─ uid | Integer | 用户ID(示例值:11) |
├─ qr_order | Object | 二维码详细信息 |
│ ├─ id | Integer | 二维码订单ID(示例值:1) |
│ ├─ order_id | Integer | 关联主订单号(示例值:257) |
│ ├─ qr_number | Integer | 二维码ID |
│ ├─ status | Integer | 订单状态(1-有效状态) |
│ ├─ verify_time | String | 核销时间(格式:1970-01-27 01:17:02) |
│ ├─ goods | Object | 商品信息 |
│ | ├─ title | String | 商品名称 |
│ | ├─ thumb | String | 商品图片 |
├─ has_one_customer | Object | 客户信息 |
│ ├─ uid | Integer | 客户ID(与订单uid对应) |
│ ├─ nickname | String | 脱敏昵称(示例:13*******72) |
│ ├─ avatar | String | 头像URL地址 |
data.first_page_url | String | 首页URL地址 |
data.last_page | Integer | 总页数(示例值:1) |
data.links | Array | 分页链接数组 |
├─ url | String | 分页链接地址(null表示不可用) |
├─ label | String | 分页标签(如:"« 上一页") |
├─ active | Boolean | 是否当前激活页 |
validate_page | Object | 页面验证信息 |
├─ is_bind_mobile | Integer | 是否绑定手机(0-未绑定) |
├─ is_login | Integer | 登录状态(1-已登录) |
├─ bind_address | Object | 地址绑定信息 |
│ ├─ is_bind_address | Integer | 是否绑定地址(0-未绑定) |