## 推見提交訂單接口
#### 請求鏈接 (post)
```
https://tuijian.dianbang-st.com/admin/index.php?s=/admin/api/placeOrder
```
*****
#### 請求參數
| 參數名 | 是否傳參 | 描述 |
| --- | --- |--- |
| key | 必填 | 接口秘鑰 |
| mch_id | 必填 | 應用id即商戶id |
| order | 必填 | 訂單(具體參數如下)**需轉成json后再提交** |
~~~
[
{
"goods_id": 4, //推見商品id
"buyer_id": 1, //推見用戶id(為空填 0)
"receiver_phone": "16666668888", //收貨人手機號
"receiver_name": 1, //收貨人姓名
"receiver_address": 1, //收貨人地址
"buyer_remarks": 1, //訂單備注(可為空)
"order_money": 1, //訂單總價
"order_no": 1, //訂單編號
"num": 1, //購買數量
"create_time": "2020-10-01 00:00:00", //訂單創建時間
"pay_time": "2020-10-01 00:00:00" //訂單付款時間
},
{
"goods_id": 5,
"buyer_id": 0,
"receiver_phone": "16666666666",
"receiver_name": "wong",
"receiver_address": "廈門",
"buyer_remarks": "備注",
"order_money": 1,
"order_no": 1,
"num": 1,
"create_time": "2020-10-01 00:00:00",
"pay_time": "2020-10-01 00:00:00"
}
]
~~~
*****
#### 請求參數
| 參數名 | 是否傳參 | 描述 |
| --- | --- |--- |
| key | 必填 | 接口秘鑰 |
| mch_id | 必填 | 應用id即商戶id |
| order | 必填 | 訂單(具體參數如下)**需轉成json后再提交** |