index.html 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {extend name='admin@main'}
  2. {block name="content"}
  3. <div class="think-box-shadow">
  4. {include file='integral_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.goods_num|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.create_at}</td>
  32. <td class='text-left nowrap'>
  33. {if $vo.status > 0 && $vo.status != 9}
  34. <a data-title="发货" class="layui-btn layui-btn-sm" data-modal='{:url("deliver")}?id={$vo.id}'>发货</a>
  35. {/if}
  36. <a data-title="查看详情" class="layui-btn layui-btn-sm" data-modal='{:url("detail")}?id={$vo.id}'>查看详情</a>
  37. </td>
  38. </tr>
  39. {/foreach}
  40. </tbody>
  41. </table>
  42. {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
  43. </div>
  44. {/block}