Files
OMS/app/console/view/admin/delivery/package_status.html
2025-12-28 23:13:25 +08:00

23 lines
715 B
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.
<!--
Copyright © ShopeX http://www.shopex.cn. All rights reserved.
See LICENSE file for license details.
-->
<h3>京东包裹配送状态列表:</h3>
<table cellpadding="0" cellspacing="0" border="0" class="gridlist">
<thead>
<tr>
<th>包裹单号</th>
<th>查询状态</th>
<th style="padding-left:8px;">配送状态</th>
</tr>
</thead>
<{foreach from=$dataList key=package_bn item=item}>
<tr>
<td><{$package_bn}></td>
<td><{$item.rsp}></td>
<td style="font-weight:bold; color:red; padding-left:8px;"><{if $item.rsp=='succ'}><{$item.data.orderStatus}>(<{$item.data.status_str}>)<{else}><{$item.msg}><{/if}></td>
</tr>
<{/foreach}>
</table>