下单
<p><strong>请求URI:</strong></p>
<ul>
<li><code>/video-doctor/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;">buy_qty</td>
<td style="text-align: left;">require,>=:1</td>
<td style="text-align: left;">int</td>
<td>购买数量</td>
</tr>
<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>
</tbody>
</table>
<p><strong>返回样例:</strong></p>
<pre><code>{
&quot;msg&quot;: &quot;请求成功&quot;,
&quot;data&quot;: {
&quot;order_no&quot;: &quot;241230372740001&quot;,//订单号
&quot;total_price&quot;: 500000,//订单总额(分)
&quot;buy_qty&quot;: 1//购买数量
},
&quot;code&quot;: 0
}</code></pre>