下单
<p><strong>请求URI:</strong></p>
<ul>
<li><code>/service/order/trade</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>POST <code>AUTH</code></li>
</ul>
<p><strong>参数:</strong></p>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">校验规则</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">pay_type</td>
<td style="text-align: left;">require,in:0,1</td>
<td style="text-align: left;">int</td>
<td>支付方式:0=微信支付,1=余额</td>
</tr>
<tr>
<td style="text-align: left;">buy_list</td>
<td style="text-align: left;">require</td>
<td style="text-align: left;">array</td>
<td>购买内容</td>
</tr>
<tr>
<td style="text-align: left;">buy_list.*.id</td>
<td style="text-align: left;">require,>:0</td>
<td style="text-align: left;">int</td>
<td>购买的服务id</td>
</tr>
<tr>
<td style="text-align: left;">buy_list.*.buy_qty</td>
<td style="text-align: left;">require,>:0</td>
<td style="text-align: left;">int</td>
<td>购买数量</td>
</tr>
</tbody>
</table>
<pre><code>{
&quot;buy_list&quot;:[
{
&quot;buy_qty&quot;:2,
&quot;id&quot;:70
}
],
&quot;pay_type&quot;:0
}</code></pre>
<p><strong>返回样例:</strong></p>
<pre><code>{
&quot;msg&quot;: &quot;请求成功&quot;,
&quot;data&quot;: {
&quot;order_no&quot;: &quot;250103377970001&quot;,//订单号
&quot;total_price&quot;: 200,//成交总额
&quot;buy_list&quot;: [//购买内容
{
&quot;buy_qty&quot;: 2,
&quot;id&quot;: 70,
&quot;service_info&quot;: {//服务信息
&quot;id&quot;: 70,
&quot;cover_image&quot;: &quot;&quot;,
&quot;title&quot;: &quot;专家病情解读(专科专家)&quot;,
&quot;sort_id&quot;: 49,
&quot;sale_price&quot;: 100,
&quot;unit_type&quot;: 1,
&quot;unit_type_payload&quot;: 1,
&quot;list_show_switch&quot;: 1,
&quot;member_show_switch&quot;: 1,
&quot;member_select_switch&quot;: 0,
&quot;member_buy_min_qty&quot;: 0,
&quot;member_buy_max_qty&quot;: 0,
&quot;online_switch&quot;: 1,
&quot;detail&quot;: &quot;&quot;,
&quot;create_datetime&quot;: &quot;2025-01-01 13:50:31&quot;,
&quot;update_datetime&quot;: &quot;2025-01-02 21:32:10&quot;
}
}
]
},
&quot;code&quot;: 0
}</code></pre>