mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
23 lines
715 B
HTML
23 lines
715 B
HTML
<!--
|
||
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>
|