🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
### 接口名称 Order/saleOrderList ### 接口描述 获取订单列表 ### 演示地址 `http://URL/Order/saleOrderList` ### 输入参数 ~~~ (string) oauth_token (必填) (string) oauth_token_secret (必填) (int) order_no 订单号(选填) (int) uid 买家id(选填) (int) status 订单状态(选填,默认所有状态) ( -1取消订单; 1:下单成功 ; 2:支付成功; 3好评成功 ; 4:申请退款中; 5:退款成功; 7:支付成功; ) (int) source_id,最后一条数据的资源id (int) count,分页显示时,指定每页显示条数(默认20) ~~~ ### 输出结果 成功 ~~~ { "status": 1, "list": [ { "order_id": "7", "order_no": "1506122679749", "title": "服务标题", "wedding_time": "2015-07-13", "goods_num": "2", "order_price": 9899, "type": "1", "status": "1", "logo": "http://www.candy.com/apps/microshop/_static/images/servicebg.png", "goods_id": "74", "uid": "1", "sid": "1" }, { "order_id": "1", "order_no": "1506123831648", "title": "服务标题", "wedding_time": "2015-07-13", "goods_num": "2", "order_price": 9899, "type": "1", "status": "-1", "logo": "http://www.candy.com/apps/microshop/_static/images/servicebg.png", "goods_id": "74", "uid": "1", "sid": "1" } ] } 失败 { "status": 0, "msg": "请先登录" } ### ~~~ ### 其他说明 ~~~ order_id 订单id/资源id order_no 订单号; title 标题 wedding_time 婚礼时间/服务时间 goods_num 购买服务数量 order_price 订单价格 status 订单状态 logo 服务logo图片 goods_id服务id uid 买家id sid 卖家id ~~~