🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
# 客户订单列表 #### 请求地址 customer/Consumption/customerConsumeList 接口类型:需身份校验 #### body参数 | 名称 | 是否必须 | 类型 | 默认值 | 备注 | | --- | --- | --- | --- | --- | | token| true | string | null | token | |type| false | string | null | 充值状态(1:充值中 2:充值成功,3.充值失败) | |cardCatName| false | string | null | 卡种名称 | | startTime| false | string | null | 开始时间 | |endTime| false | string | null | 结束时间 | | page| false | string | null | 当前页 | | pageSize| false | string | null | 每页显示条数 | | isExport| false | string | null | 是否导出 0:否 1:是| #### 状态码 | Code | Msg | | --- | --- | | 0 | 成功 | | -1 | 失败 | #### 成功返回 | 字段 | 备注 | | --- | --- | |orderNo|订单号| |cardCatName|卡种名称| |customerName|客服名称| |rechargeTarget|充值账号| |standardPrice|标准价| |salesPrice|销售价格| |rechargeStateName|充值状态| |createTime|创建时间| ~~~ { "code": 0, "msg": "操作成功", "data": { "total": 412, "pageSize": "1", "start": 0, "root": [ { "orderNo": "20200515131234193275", "cardCatName": "爱奇艺黄金一天卡", "customerName": "测试[金文&IP白名单]", "rechargeTarget": "18516605611", "standardPrice": "6.000", "salesPrice": "3.960", "rechargeState": 2, "createTime": "2020-05-15 13:12:34", "rechargeStateName": "充值成功" } ], "totalPage": 412, "currPage": 1 } } ~~~