index.html 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. {extend name='admin@main'}
  2. {block name="button"}
  3. <!--{if auth("store/goods/add")}-->
  4. <button data-open='{:url("add")}' data-title="添加汽车" class='layui-btn layui-btn-sm layui-btn-primary'>添加汽车</button>
  5. <!--{/if}-->
  6. <!--{if auth("store/goods/remove")}-->
  7. <button data-action='{:url("remove")}' data-rule="id#{key}" class='layui-btn layui-btn-sm layui-btn-primary'>删除汽车</button>
  8. <!--{/if}-->
  9. {/block}
  10. {block name="content"}
  11. <div class="think-box-shadow">
  12. <table class="layui-table margin-top-10" lay-skin="line">
  13. {notempty name='list'}
  14. <thead>
  15. <tr>
  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. <th class='text-left nowrap' >租赁价格</th>
  27. <th class='text-left nowrap' >是否推荐</th>
  28. <th class='text-left nowrap'>操作</th>
  29. </tr>
  30. </thead>
  31. {/notempty}
  32. <tbody>
  33. {foreach $list as $key=>$vo}
  34. <tr data-dbclick>
  35. <td class='text-left nowrap'>
  36. {$vo.cheliangbiaohao}
  37. </td>
  38. <td class='text-left nowrap'>
  39. {$vo.chexing}--{$vo.pinpai}
  40. </td>
  41. <td class='text-left nowrap'>
  42. {$vo.cheling}个月
  43. </td>
  44. <td class='text-left nowrap'>
  45. {$vo.cheliangxingzhi}
  46. </td>
  47. <td class='text-left nowrap'>
  48. {$vo.cheliangleixing}
  49. </td>
  50. <td class='text-left nowrap'>
  51. {$vo.licheng}万公里
  52. </td>
  53. <td class='text-left nowrap'>
  54. {$vo.xiangtikuandu}米
  55. </td>
  56. <td class='text-left nowrap'>
  57. {$vo.chechijingli}
  58. </td>
  59. <td class='text-left nowrap'>
  60. {$vo.form_city}
  61. </td>
  62. <td class='text-left nowrap'>
  63. {$vo.biaoqian}
  64. </td>
  65. <td class='text-left nowrap'>
  66. {$vo.jiage}
  67. </td>
  68. <td class='text-left nowrap'>
  69. {if $vo['is_tuijian']==1}
  70. 是----{$vo.tuijian_remark}
  71. {else}
  72. {/if}
  73. </td>
  74. <td class='text-left nowrap'>
  75. <a data-dbclick class="layui-btn layui-btn-sm" data-modal='{:url("tuijian")}?id={$vo.id}'>热门推荐</a>
  76. <a data-dbclick class="layui-btn layui-btn-sm" data-modal='{:url("stock")}?id={$vo.id}'>标签</a>
  77. {if auth("store/goods/edit")}
  78. <a data-dbclick class="layui-btn layui-btn-sm" data-open='{:url("edit")}?id={$vo.id}'>编 辑</a>
  79. {else}
  80. <a data-tips-text="您没有编辑汽车的权限哦!" class="layui-btn layui-btn-sm layui-btn-primary layui-disabled">编 辑</a>
  81. {/if}
  82. {if auth("store/goods/remove")}
  83. <a class="layui-btn layui-btn-sm layui-btn-danger" data-confirm="确定要删除数据吗?" data-action="{:url('remove')}" data-value="id#{$vo.id}">删 除</a>
  84. {else}
  85. <a data-tips-text="您没有删除汽车的权限哦!" class="layui-btn layui-btn-sm layui-btn-primary layui-disabled">删 除</a>
  86. {/if}
  87. </td>
  88. </tr>
  89. {/foreach}
  90. </tbody>
  91. </table>
  92. {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
  93. </div>
  94. {/block}