订单详情接口
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>订单详情接口</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>http://api.magicalday.cn/order/detail</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>POST </li>
</ul>
<h5>参数</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">order_id</td>
<td style="text-align: left;">string</td>
<td>订单编号</td>
</tr>
</tbody>
</table>
<h5>返回示例</h5>
<pre><code>{
&quot;code&quot;:0,
&quot;msg&quot;:&quot;&quot;,
&quot;count&quot;:0,
&quot;data&quot;:{
&quot;order_id&quot;:&quot;2022100501550001&quot;,
&quot;uid&quot;:&quot;2&quot;,
&quot;consignee_name&quot;:&quot;龙&quot;,
&quot;consignee_mobile&quot;:&quot;15652206707&quot;,
&quot;total_amount&quot;:&quot;70.19&quot;,
&quot;pay_amount&quot;:&quot;70.19&quot;,
&quot;payment_deadline&quot;:&quot;1664907014&quot;,
&quot;status&quot;:&quot;0&quot;,
&quot;goods_list&quot;:[
{
&quot;goods_id&quot;:&quot;71&quot;,
&quot;img&quot;:&quot;https://img.meituan.net/groceryimages/2ebe24755f225167666a55c0a752c1bf90866.jpg&quot;,
&quot;short_title&quot;:&quot;诗芒&quot;,
&quot;number&quot;:&quot;1&quot;,
&quot;selling_price&quot;:&quot;10.90&quot;
},
{
&quot;goods_id&quot;:&quot;72&quot;,
&quot;img&quot;:&quot;https://img.meituan.net/750.750/groceryinfrastructureimages/7561db014f7ee9a23e18704ac8f4524c536118.png&quot;,
&quot;short_title&quot;:&quot;幽莲魅&quot;,
&quot;number&quot;:&quot;1&quot;,
&quot;selling_price&quot;:&quot;19.39&quot;
},
{
&quot;goods_id&quot;:&quot;73&quot;,
&quot;img&quot;:&quot;https://img.meituan.net/750.750/groceryinfrastructureimages/5e424661f9158c879aacb12efb2687cf290123.png&quot;,
&quot;short_title&quot;:&quot;随机&quot;,
&quot;number&quot;:&quot;1&quot;,
&quot;selling_price&quot;:&quot;39.90&quot;
}
],
&quot;create_date&quot;:&quot;2022/10/16 21:01&quot;
}
}</code></pre>
<h5>返回参数说明</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<p>|order_id|string|订单ID|
|uid|string|用户uid|
|consignee_name|string|提货人姓名|
|consignee_mobile|string|提货人手机号|
|total_amount|string|订单金额|
|pay_amount|string|支付金额|
|payment_deadline|int|支付截至时间戳|
|status|string|支付状态(0:等待支付、1:支付成功、2已取消、3部分退货、4全部退货)|
|goods_list|array|商品列表:goods_id、img、short_title、number、selling_price|
|create_date|string|订单创建时间|</p>
<h5>备注</h5>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>