### 獲取會員訂單列表
>[success] status 0 已經取消的訂單,包含已經退款的訂單
> status 1 預訂單,還沒有收貨地址,需要確認后才能支付(無此狀態)
> status 2 新訂單,待支付狀態
> status 3 已支付,待發貨(無此狀態)
> status 4 已發貨,待完成收貨(無此狀態)
> status 5 已確認收貨,訂單完成
>[danger] cancel_state 0 訂單未取消
> cancel status 1 訂單已經取消
>[success] refund_state 0 訂單未發生退款
> refund_state 1 訂單需要退款(待退款)
> refund_state 2 訂單已經未完成退款
>[info] pay_state 0 訂單未支付
> pay_state 1 訂單已經完成支付
~~~[api]
post:https://huangjinjiangan.xiaoding.shop/store/api.member.order/gets
*string:mid=1#會員ID
*string:openid=odTi05FZpmC4DrQiXPxKnOApkHpA#微信用戶OPENID
string:page#指定當前分頁
string:status#指定訂單狀態
string:order_no#指定訂單號
<<<
success
{
"code": 1,
"info": "獲取訂單列表成功!",
"data": {
"page": {
"limit": 20,
"total": 2,
"pages": 1,
"current": 1
},
"list": [
{
"id": 2,
"mid": 1,
"device_id": 6565657,
"order_no": 648493034687,
"price_total": "100.00",
"pay_state": 0,
"pay_type": "",
"pay_price": "0.00",
"pay_no": "",
"pay_at": null,
"cancel_state": 0,
"cancel_at": null,
"cancel_desc": "",
"refund_state": 0,
"refund_at": null,
"refund_no": "",
"refund_price": "0.00",
"refund_desc": "",
"status": 2,
"is_deleted": 0,
"create_at": "2019-01-26 16:57:14",
"goods_count": 1,
"list": [
{
"id": 2,
"mid": 1,
"order_no": 648493034687,
"goods_id": 6484849768,
"goods_title": "測試商品",
"goods_logo": "https://ssl.cdn.cuci.cc/decb0fe26fa3f486/b3f6521bf29403c8.png",
"goods_price": "100.00",
"real_price": "100.00",
"number": 1,
"create_at": "2019-01-26 16:57:14"
}
]
},
{
"id": 1,
"mid": 1,
"device_id": 6565657,
"order_no": 648491950658,
"price_total": "100.00",
"pay_state": 0,
"pay_type": "",
"pay_price": "0.00",
"pay_no": "",
"pay_at": null,
"cancel_state": 0,
"cancel_at": null,
"cancel_desc": "",
"refund_state": 0,
"refund_at": null,
"refund_no": "",
"refund_price": "0.00",
"refund_desc": "",
"status": 2,
"is_deleted": 0,
"create_at": "2019-01-26 16:39:10",
"goods_count": 1,
"list": [
{
"id": 1,
"mid": 1,
"order_no": 648491950658,
"goods_id": 6484849768,
"goods_title": "測試商品",
"goods_logo": "https://ssl.cdn.cuci.cc/decb0fe26fa3f486/b3f6521bf29403c8.png",
"goods_price": "100.00",
"real_price": "100.00",
"number": 1,
"create_at": "2019-01-26 16:39:10"
}
]
}
]
}
}
<<<
error
{
"code": 0,
"info": "創建訂單失敗參數失敗!簽名錯誤",
"data": []
}
~~~