🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
**基本信息** 接口地址:`http[s]://api.12xue.com/pay/orders` 请求方式:`GET` 请求类型:`application/x-www-form-urlencoded` 响应类型:`json` **请求头** |参数名|必选|描述|默认值| |---|---|---|---| |Token|否|用户唯一token|-| |Source|是|客户端来源标识|-| |Version|是|客户端当前版本号|1.0.0| |Identity|否|用户角色|-| **参数** |参数名|必选|类型|描述|默认值| |---|---|---|---|---| |uid|是|string|用户uid|-| |num|否|string|每页条目|-| |page|否|string|页码|-| |bpay|否|string|是否支付 0代表没有支付 1代表已经支付|-| |type|否|string|0 所有订单 1已经过期订单 2没有过期订单|-| **返回示例** - success ```json { "ret": 0, "msg": "ok", "count": "3", "totalPages": 1, "totalRows": "3", "nowPage": 1, "data": [ { "desp": "1122", "createtime": "1458613077", "expiretime": "1458613377", "paycount": "111", "ordernum": "12221321458613077431", "type": "wx", "goodstag": null, "detail": null, "bpay": "0" }, { "desp": "1122", "createtime": "1458614802", "expiretime": "1458615102", "paycount": "111", "ordernum": "12221321458614802431", "type": "wx", "goodstag": null, "detail": null, "bpay": "0" } ] } ``` - error ```json { "ret": -1, "msg": "参数错误" } ``` **返回参数说明** |参数名|类型|说明| |---|---|---| |ret |int |状态码 0:成功| |msg |string |状态消息 ok:成功| --: 该接口最后修订时间:2016-04-01 10:56:25 * * * * *