[TOC=2]
## 訂單列表
### 狀態說明(status):
| 可選值 | 說明 |
| --- | --- |
| all | 所有訂單 |
| pending | 申請中,表示用戶下單提交到商家 |
| receive | 已受理,商家已經確認 |
| finish | 已完成,商家已經處理完成 |
~~~[api]
get:/order/list
int:current_page=0#當前頁
int:page_number=0#頁碼
string:status=all#訂單狀態
<<<
success
<<<
error
~~~
## 訂單創建
~~~[api]
post:/order/create
*string:name=姓名#姓名
*string:phone=15181474781#手機號
*int:store_id=1#門店id
*string:service_name=送水#服務名
*string:address=地址#所在地址
string:other=其他#其他信息
<<<
success
<<<
error
~~~
## 訂單取消
~~~[api]
post:/order/cancel
*int:id=1#訂單id
string:reason=""#取消原因
<<<
success
<<<
error
~~~