79 lines
3.7 KiB
HTML
79 lines
3.7 KiB
HTML
{include file="Public:header"/}
|
|
|
|
<body>
|
|
<div class="layui-fluid">
|
|
<div class="layui-card">
|
|
<div class="layui-card-header">发货列表</div>
|
|
<div class="layui-card-body">
|
|
<table class="layui-table">
|
|
<thead>
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>订单ID</th>
|
|
<th>用户ID</th>
|
|
<th>发货单号</th>
|
|
<th>盒子ID</th>
|
|
<th>奖品ID</th>
|
|
<th>奖品名称</th>
|
|
<th>奖品图片</th>
|
|
<th>奖品价值</th>
|
|
<th>兑换价值</th>
|
|
<th>奖品类型</th>
|
|
<th>保险状态</th>
|
|
<th>添加时间</th>
|
|
<th>选择时间</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{volist name="list" id="vo"}
|
|
<tr>
|
|
<td>{$vo.id}</td>
|
|
<td>{$vo.order_id}</td>
|
|
<td>{$vo.user_id}</td>
|
|
<td>{$vo.send_num}</td>
|
|
<td>{$vo.goods_id}</td>
|
|
<td>{$vo.goodslist_id}</td>
|
|
<td>{$vo.goodslist_title}</td>
|
|
<td>
|
|
<img src="{$vo.goodslist_imgurl}" style="height:40px;" onerror="this.src='/static/admin/images/nopic.jpg'">
|
|
</td>
|
|
<td>¥ {$vo.goodslist_price}</td>
|
|
<td>¥ {$vo.goodslist_money}</td>
|
|
<td>
|
|
{if condition="$vo.goodslist_type eq 1"}
|
|
<span class="layui-badge layui-bg-green">现货</span>
|
|
{elseif condition="$vo.goodslist_type eq 2"}
|
|
<span class="layui-badge layui-bg-orange">预售</span>
|
|
{elseif condition="$vo.goodslist_type eq 3"}
|
|
<span class="layui-badge layui-bg-blue">货币</span>
|
|
{elseif condition="$vo.goodslist_type eq 4"}
|
|
<span class="layui-badge layui-bg-purple">宝箱</span>
|
|
{/if}
|
|
</td>
|
|
<td>
|
|
{if condition="$vo.insurance_is eq 0"}
|
|
<span class="layui-badge layui-bg-gray">否</span>
|
|
{elseif condition="$vo.insurance_is eq 1"}
|
|
<span class="layui-badge layui-bg-green">是</span>
|
|
{/if}
|
|
</td>
|
|
<td>{$vo.addtime|date="Y-m-d H:i:s"}</td>
|
|
<td>{$vo.choice_time|date="Y-m-d H:i:s"}</td>
|
|
</tr>
|
|
{/volist}
|
|
{if condition="empty($list)"}
|
|
<tr>
|
|
<td colspan="14" style="text-align:center;">暂时没有数据!</td>
|
|
</tr>
|
|
{/if}
|
|
</tbody>
|
|
</table>
|
|
<div class="layui-box layui-laypage layui-laypage-default">
|
|
{$page|raw}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{include file="Public:footer"/}
|
|
</body>
|
|
</html> |