说明:

  • 店铺提现列表


请求地址:

/wapbiz/addons/shop/shop/shopAccountWithdrawListBiz


请求参数说明:

参数名 类型 是否必须 说明
page_index int 当前页数,不传默认第一页
page_size int 每页数目, 不传默认20
status int 提现状态, 不传或者0默认全部,1待处理(包含待打款和待审核),2已处理(包含已打款,已拒绝,审核不通过),3打款失败
search_text string 搜索关键字,该接口只能搜店铺名称


------------


### 返回示例:
{
  "code": 1,
  "message": "获取成功",
  "data": {
    "total_count": 1,
    "page_count": 1,
    "withdraw_list": [
      {
        "id": 1,
        "withdraw_no": "181025075448595",//提现单号
        "type": "支付宝",//提现方式名称
        "shop_id": 51,//店铺id
        "status": 1,//当前状态 1待审核2待打款3已打款4拒绝打款5打款失败 -1审核不通过
        "shop_name": "华硕专卖店",//店铺名称
        "account_number": "18539772378@163.com",//提现账户
        "cash": "¥0.10",//提现金额
        "charge": "0.00",//手续费
        "ask_for_date": "2018-10-25 19:54:48",//申请时间
        "payment_date": "未到账",//打款时间
        "status_name": "待审核"//提现状态
      }
    ]
  }
}