下单(带使用)
<p><strong>请求URI:</strong></p>
<ul>
<li><code>/service/order/trade/bill</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_service_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;">bill_info</td>
<td style="text-align: left;">require</td>
<td style="text-align: left;">object</td>
<td>使用人信息</td>
</tr>
<tr>
<td style="text-align: left;">bill_info.apply_assign_date</td>
<td style="text-align: left;">require</td>
<td style="text-align: left;">date</td>
<td>预约日期</td>
</tr>
<tr>
<td style="text-align: left;">bill_info.apply_real_name</td>
<td style="text-align: left;">require</td>
<td style="text-align: left;">string</td>
<td>姓名</td>
</tr>
<tr>
<td style="text-align: left;">bill_info.apply_phone</td>
<td style="text-align: left;">require</td>
<td style="text-align: left;">string</td>
<td>手机号</td>
</tr>
<tr>
<td style="text-align: left;">bill_info.apply_archive_id</td>
<td style="text-align: left;">require,>=0</td>
<td style="text-align: left;">int</td>
<td>家庭档案id 0=非档案成员使用</td>
</tr>
</tbody>
</table>
<pre><code>{
&quot;pay_type&quot;:1,
&quot;buy_service_id&quot;:70,
&quot;bill_info&quot;:{
&quot;apply_archive_id&quot;:2,
&quot;apply_phone&quot;:&quot;123&quot;,
&quot;apply_real_name&quot;:&quot;321&quot;,
&quot;apply_assign_date&quot;:&quot;2025-02-14&quot;
}
}</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>