提现列表
## 提现列表
### 请求地址:/withdraw/list
### 请求方法: get
### 请求参数
|参数|类型|是否必传|说明|
|--|--|--|--|
|page|integer|否|页码,默认1
|page_size|integer|否|一页多少条,默认10
|nickname|string|否|昵称
|status|integer|否|提现状态 1 审核中 2 提现成功 3 提现驳回
### 返回格式:
```
{
"code":"200",
"message":"",
"data":{
"total_page":"",
"total_count":"",
"lists":[
{
"withdraw_id":"",//提现id
"nickname":"",//昵称
"user_id":"",//用户id
"amount":"",//提现金额
"wechat":"",// 微信号
"discount_amount":"",//扣除手续费之后金额
"created_at":"",//提现时间
"status":"",//提现状态 1 审核中 2 提现成功 3 提现驳回
}
]
}
}
```