1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- {extend name='admin@main'}
- {block name="content"}
- <div class="think-box-shadow">
- {include file='integral_order/index_search'}
- <table class="layui-table margin-top-10" lay-skin="line">
- {notempty name='list'}
- <thead>
- <tr>
- <th class='list-table-check-td think-checkbox'><input data-auto-none data-check-target='.list-check-box' type='checkbox'></th>
- <th class='text-left nowrap'>用户名</th>
- <th class='text-left nowrap'>手机号</th>
- <th class='text-left nowrap'>订单金额</th>
- <th class='text-left nowrap'>商品数量</th>
- <th class='text-left nowrap'>订单号</th>
- <th class='text-left nowrap'>订单状态</th>
- <th class="text-left nowrap">添加时间</th>
- <th class="text-left nowrap">操作</th>
- </tr>
- </thead>
- {/notempty}
- <tbody>
- {foreach $list as $key=>$vo}
- <tr>
- <td class='list-table-check-td think-checkbox'><input class="list-check-box" value='{$vo.id}' type='checkbox'></td>
- <td class='text-left nowrap'>{$vo.user_name|default=''}</td>
- <td class='text-left nowrap'>{$vo.phone|default=''}</td>
- <td class='text-left nowrap'>{$vo.price_total|default=''}</td>
- <td class='text-left nowrap'>{$vo.goods_num|default=''}</td>
- <td class='text-left nowrap'>{$vo.order_no|default=''}</td>
- <td class='text-left nowrap'>{$order_status[$vo.status]|default=''}</td>
- <td class='text-left nowrap'>{$vo.create_at}</td>
- <td class='text-left nowrap'>
- {if $vo.status > 0 && $vo.status != 9}
- <a data-title="发货" class="layui-btn layui-btn-sm" data-modal='{:url("deliver")}?id={$vo.id}'>发货</a>
- {/if}
- <a data-title="查看详情" class="layui-btn layui-btn-sm" data-modal='{:url("detail")}?id={$vo.id}'>查看详情</a>
- </td>
- </tr>
- {/foreach}
- </tbody>
- </table>
- {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
- </div>
- {/block}
|