说明:

  • 订单记录


请求地址:

/wapbiz/finance/shoporderaccountlist


请求参数说明:

参数名 类型 是否必须 说明
page_index int 当前页数,不传默认第一页
page_size int 每页数目, 不传默认20
type int 传1,不传默认0则返回的是订单记录




### 返回示例:
{
  "code": 1,
  "message": "获取成功",
  "data": {
    "total_count": 3,
    "page_count": 1,
    "withdraw_list": [
      {
        "status": 1,//状态
        "withdraw_no": "200923023340795",//流水号
        "type": "支付宝",//提现方式
        "cash": "¥-22.00",//提现金额
        "platform_money": "2.20",//平台抽取
        "charge": "0.00",//手续费
        "ask_for_date": "2020-09-23 14:33:40",//申请时间
        "status_name": "待审核",//状态名称
        "id": 3
      },
      {
        "status": 1,
        "withdraw_no": "200923023257590",
        "type": "支付宝",
        "cash": "¥-223.00",
        "platform_money": "22.30",
        "charge": "0.00",
        "ask_for_date": "2020-09-23 14:32:57",
        "status_name": "待审核",
        "id": 2
      },
      {
        "status": 2,
        "withdraw_no": "181025075448595",
        "type": "支付宝",
        "cash": "¥0.10",
        "platform_money": "0.00",
        "charge": "0.00",
        "ask_for_date": "2018-10-25 19:54:48",
        "status_name": "待打款",
        "id": 1
      }
    ]
  }
}