说明:
- 会员提现列表
请求地址:
/wapbiz/member/usercommissionwithdrawlist
请求参数说明:
参数名 | 类型 | 是否必须 | 说明 |
---|---|---|---|
page_index | int | 否 | 当前页数,不传默认第一页 |
page_size | int | 否 | 每页数目, 不传默认20 |
status | int | 否 | 提现状态, 不传或者0默认全部,1待处理(包含待打款和待审核),2已处理(包含已打款,已拒绝,审核不通过),3打款失败 |
search_text | string | 否 | 搜索关键字,昵称,手机号,用户名,用户id |
------------
### 返回示例:
{
"code": 1,
"message": "获取成功",
"data": {
"total_count": 2,
"page_count": 1,
"withdraw_list": [
{
"id": 53,
"withdraw_no": "1540879208241",//提现单号
"withdraw_type": "支付宝",//提现方式名称
"uid": 230,//用户id
"account_number": "74555",//提现账户
"status": 5,//当前状态 1待审核2待打款3已打款4拒绝打款5打款失败 -1审核不通过
"user_info": "测试",//用户名称
"cash": "-100.00",//提现金额
"charge": "0.00",//手续费
"ask_for_date": "2018-10-30 14:00:08",//申请时间
"payment_date": "未到账",//打款时间
"status_name": "打款失败"//提现状态
},
{
"id": 32,
"withdraw_no": "BT1539149801535",
"payment_type": "微信",
"uid": 199,
"account_number": "13450394263",
"status": 5,
"user_info": 199,
"cash": "-1.00",
"charge": "0.00",
"ask_for_date": "2018-10-10 13:36:41",
"payment_date": "未到账",
"status_name": "打款失败"
}
]
}
}