index.html 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. <th class="text-left nowrap">支付时间</th>
  25. <th class="text-left nowrap">操作</th>
  26. </tr>
  27. </thead>
  28. {/notempty}
  29. <tbody>
  30. {foreach $list as $key=>$vo}
  31. <tr>
  32. <td class='list-table-check-td think-checkbox'><input class="list-check-box" value='{$vo.id}' type='checkbox'></td>
  33. <td class='text-left nowrap'>{$vo.user_name|default=''}</td>
  34. <td class='text-left nowrap'>{$vo.phone|default=''}</td>
  35. <td class='text-left nowrap'>{$vo.pay_price|default=''}</td>
  36. <td class='text-left nowrap'>{$vo.num|default=''}</td>
  37. <td class='text-left nowrap'>{$vo.order_no|default=''}</td>
  38. <td class='text-left nowrap'>{$order_status[$vo.status]}{if $vo.status eq 2}({eq name='vo.cancel_state' value='1'}自动取消{/eq}{eq name='vo.cancel_state' value='2'}手动取消{/eq}){/if}</td>
  39. <td class='text-left nowrap'>{eq name='vo.pay_type' value='wx'}微信{/eq}{eq name='vo.pay_type' value='zfb'}支付宝{/eq}</td>
  40. <td class='text-left nowrap'>{$vo.create_at}</td>
  41. <td class='text-left nowrap'>{$vo.pay_at}</td>
  42. <td class='text-left nowrap'>
  43. <a data-title="查看详情" class="layui-btn layui-btn-sm" data-modal='{:url("detail")}?id={$vo.id}'>查看详情</a>
  44. </td>
  45. </tr>
  46. {/foreach}
  47. </tbody>
  48. </table>
  49. {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
  50. </div>
  51. {/block}