REAPI/app/robot/view/order/info.html
2024-09-29 15:43:18 +08:00

51 lines
1.3 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<table class="layui-table margin-top-10" lay-skin="line">
<tr>
<td class='text-left nowrap'>请求地址:</td>
<td class='text-left nowrap'>{$vo.url}</td>
</tr>
<tr>
<td class='text-left nowrap'>订单ID</td>
<td class='text-left nowrap'>{$vo.order_id}</td>
</tr>
<tr>
<td class='text-left nowrap'>请求时间:</td>
<td class='text-left nowrap'>{$vo.create_at}</td>
</tr>
<tr>
<td class='text-left nowrap'>请求信息:</td>
<td class='text-left nowrap'>{$vo.request}</td>
</tr>
<tr>
<td class='text-left nowrap'>响应信息:</td>
<td class='text-left nowrap'>{$vo.response}</td>
</tr>
<tr>
<td class='text-left nowrap'>回调信息:</td>
<td class='text-left nowrap'>{$vo.channel_callback_msg}</td>
</tr>
<tr>
<td class='text-left nowrap'>回调时间:</td>
<td class='text-left nowrap'>{$vo.channel_callback_at}</td>
</tr>
<tr>
<td class='text-left nowrap'>商户响应信息:</td>
<td class='text-left nowrap'>{$vo.merchant_callback_msg}</td>
</tr>
<tr>
<td class='text-left nowrap'>商户响应时间:</td>
<td class='text-left nowrap'>{$vo.merchant_callback_at}</td>
</tr>
<tr>
<td class='text-left nowrap'>商户响应次数:</td>
<td class='text-left nowrap'>{$vo.merchant_callback_num}</td>
</tr>
</table>