index.html 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {extend name='admin@main'}
  2. {block name="content"}
  3. <div class="think-box-shadow">
  4. {include file='crystal_order/index_search'}
  5. <table class="layui-table margin-top-10" lay-skin="line">
  6. {notempty name='list'}
  7. <thead>
  8. <tr>
  9. <th class='list-table-check-td think-checkbox'><input data-auto-none data-check-target='.list-check-box' type='checkbox'></th>
  10. <th class='text-left nowrap'>用户名</th>
  11. <th class='text-left nowrap'>手机号</th>
  12. <th class='text-left nowrap'>订单金额</th>
  13. <th class='text-left nowrap'>充值明信片</th>
  14. <th class='text-left nowrap'>订单号</th>
  15. <th class='text-left nowrap'>订单状态</th>
  16. <th class="text-left nowrap">支付时间</th>
  17. <th class="text-left nowrap">添加时间</th>
  18. </tr>
  19. </thead>
  20. {/notempty}
  21. <tbody>
  22. {foreach $list as $key=>$vo}
  23. <tr>
  24. <td class='list-table-check-td think-checkbox'><input class="list-check-box" value='{$vo.id}' type='checkbox'></td>
  25. <td class='text-left nowrap'>{$vo.user_name|default=''}</td>
  26. <td class='text-left nowrap'>{$vo.phone|default=''}</td>
  27. <td class='text-left nowrap'>{$vo.price_total|default=''}</td>
  28. <td class='text-left nowrap'>{$vo.crystal|default=''}</td>
  29. <td class='text-left nowrap'>{$vo.order_no|default=''}</td>
  30. <td class='text-left nowrap'>{$order_status[$vo.status]|default=''}</td>
  31. <td class='text-left nowrap'>{$vo.pay_at|default='--'}</td>
  32. <td class='text-left nowrap'>{$vo.create_at}</td>
  33. </tr>
  34. {/foreach}
  35. </tbody>
  36. </table>
  37. {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
  38. </div>
  39. {/block}