12345678910111213141516171819202122232425262728293031323334353637383940 |
- {extend name='admin@main'}
- {block name="content"}
- <div class="think-box-shadow">
- {include file='crystal_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.crystal|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.pay_at|default='--'}</td>
- <td class='text-left nowrap'>{$vo.create_at}</td>
- </tr>
- {/foreach}
- </tbody>
- </table>
- {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
- </div>
- {/block}
|