简要描述:
- 门店消费卡收入列表,店长消费卡收入明细列表
请求域名:
- http://xx.com
请求URL:
POST/route=plugin.store-card.Frontend.Modules.Income.Controllers.records.index
参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
page | 否 | int | 分页页面值,默认1 |
返回示例:
正确时返回:
{
result: 1,
msg: "ok",
data:- {
page_list:- {
total: 1,
per_page: 15,
current_page: 1,
last_page: 1,
next_page_url: null,
prev_page_url: null,
from: 1,
to: 1,
data:- [{
id: 1,
uid: 159,
amount: "200.00",
created_at: "2021-02-22 09:49:57",
card_name: "消费卡2"
}]
},
base_data:- {
nickname: "13660277157",
avatar: "http://weiqing.yunzhong.com:8888/addons/yun_shop/static/images/photo-mr.jpg",
amount: "200.00"
}
}
}
错误时返回:
{
result: 0,
msg: "错误消息",
data:[]
}
返回参数data.base_data:
参数名 | 类型 | 说明 |
---|---|---|
nickname | string | 会员昵称 |
avatar | string | 会员头像 |
amount | float | 收入总额 |
返回参数data.page_list :
参数名 | 类型 | 说明 |
---|---|---|
id | int | 消费卡主键ID |
uid | string | 会员ID |
amount | float | 收入额度 |
card_name | string | 消费卡名称 |
created_at | array | 创建时间 |
备注:
- 更多返回错误代码请看首页的错误代码描述