扫码支付结果确认(微信)
<p><strong>请求URI:</strong></p>
<ul>
<li><code>/admin/order/fast/check/wechat</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>GET <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;">order_no</td>
<td style="text-align: left;">require</td>
<td style="text-align: left;">string</td>
<td>订单号</td>
</tr>
</tbody>
</table>
<ul>
<li>支付成功时会自动更新订单状态</li>
</ul>
<p><strong>返回示例:</strong></p>
<pre><code>//成功支付
{
&quot;msg&quot;: &quot;请求成功&quot;,
&quot;data&quot;: &quot;支付成功&quot;,
&quot;code&quot;: 0
}
//失败支付或未完成支付
{
&quot;msg&quot;: &quot;支付失败,请撤销订单&quot;,//异常描述
&quot;data&quot;: {
&quot;return_code&quot;: &quot;SUCCESS&quot;,
&quot;return_msg&quot;: &quot;OK&quot;,
&quot;result_code&quot;: &quot;SUCCESS&quot;,
&quot;trade_state&quot;: &quot;PAYERROR&quot;,//失败原因
&quot;out_trade_no&quot;: &quot;240912479840001&quot;,
&quot;attach&quot;: null,
&quot;trade_state_desc&quot;: &quot;支付失败,请撤销订单&quot;
},
&quot;code&quot;: 1
}</code></pre>