index.html 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {extend name='admin@main'}
  2. {block name="content"}
  3. <div class="think-box-shadow">
  4. <div style="background-color: #e3e3c7 ;height: 50px;overflow: hidden">
  5. <p style="line-height: 50px;font-size: 16px">&nbsp;&nbsp;
  6. 总支付单数:<span style='color:red'>{$order_num}</span> ,
  7. 总销售额:<span style='color:red'>{$total_money}</span>
  8. </p>
  9. </div>
  10. {include file='goods_order/index_search'}
  11. <table class="layui-table margin-top-10" lay-skin="line">
  12. {notempty name='list'}
  13. <thead>
  14. <tr>
  15. <th class='list-table-check-td think-checkbox'><input data-auto-none data-check-target='.list-check-box' type='checkbox'></th>
  16. <th class='text-left nowrap'>用户名</th>
  17. <th class='text-left nowrap'>手机号</th>
  18. <th class='text-left nowrap'>订单金额</th>
  19. <th class='text-left nowrap'>商品数量</th>
  20. <th class='text-left nowrap'>订单号</th>
  21. <th class='text-left nowrap'>订单状态</th>
  22. <th class="text-left nowrap">添加时间</th>
  23. <th class="text-left nowrap">操作</th>
  24. </tr>
  25. </thead>
  26. {/notempty}
  27. <tbody>
  28. {foreach $list as $key=>$vo}
  29. <tr>
  30. <td class='list-table-check-td think-checkbox'><input class="list-check-box" value='{$vo.id}' type='checkbox'></td>
  31. <td class='text-left nowrap'>{$vo.user_name|default=''}</td>
  32. <td class='text-left nowrap'>{$vo.phone|default=''}</td>
  33. <td class='text-left nowrap'>{$vo.price_total|default=''}</td>
  34. <td class='text-left nowrap'>{$vo.goods_num|default=''}</td>
  35. <td class='text-left nowrap'>{$vo.order_no|default=''}</td>
  36. <td class='text-left nowrap'>{$order_status[$vo.status]|default='已取消'}</td>
  37. <td class='text-left nowrap'>{$vo.create_at}</td>
  38. <td class='text-left nowrap'>
  39. <a data-title="查看详情" class="layui-btn layui-btn-sm" data-modal='{:url("detail")}?id={$vo.id}'>查看详情</a>
  40. </td>
  41. </tr>
  42. {/foreach}
  43. </tbody>
  44. </table>
  45. {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
  46. </div>
  47. {/block}