123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- {extend name='admin@main'}
- {block name="button"}
- <!--{if auth("store/goods/add")}-->
- <button data-open='{:url("add")}' data-title="添加汽车" class='layui-btn layui-btn-sm layui-btn-primary'>添加汽车</button>
- <!--{/if}-->
- <!--{if auth("store/goods/remove")}-->
- <button data-action='{:url("remove")}' data-rule="id#{key}" class='layui-btn layui-btn-sm layui-btn-primary'>删除汽车</button>
- <!--{/if}-->
- {/block}
- {block name="content"}
- <div class="think-box-shadow">
- <table class="layui-table margin-top-10" lay-skin="line">
- {notempty name='list'}
- <thead>
- <tr>
- <th class='text-left nowrap' >汽车编号</th>
- <th class='text-left nowrap' >车型/品牌</th>
- <th class='text-left nowrap' >车龄</th>
- <th class='text-left nowrap' >车辆性质</th>
- <th class='text-left nowrap' >车辆类型</th>
- <th class='text-left nowrap' >里程</th>
- <th class='text-left nowrap' >箱体宽度</th>
- <th class='text-left nowrap' >车池经理</th>
- <th class='text-left nowrap' >看车池</th>
- <th class='text-left nowrap' >标签</th>
- <th class='text-left nowrap' >租赁价格</th>
- <th class='text-left nowrap' >是否推荐</th>
- <th class='text-left nowrap'>操作</th>
- </tr>
- </thead>
- {/notempty}
- <tbody>
- {foreach $list as $key=>$vo}
- <tr data-dbclick>
- <td class='text-left nowrap'>
- {$vo.cheliangbiaohao}
- </td>
- <td class='text-left nowrap'>
- {$vo.chexing}--{$vo.pinpai}
- </td>
- <td class='text-left nowrap'>
- {$vo.cheling}个月
- </td>
- <td class='text-left nowrap'>
- {$vo.cheliangxingzhi}
- </td>
- <td class='text-left nowrap'>
- {$vo.cheliangleixing}
- </td>
- <td class='text-left nowrap'>
- {$vo.licheng}万公里
- </td>
- <td class='text-left nowrap'>
- {$vo.xiangtikuandu}米
- </td>
- <td class='text-left nowrap'>
- {$vo.chechijingli}
- </td>
- <td class='text-left nowrap'>
- {$vo.form_city}
- </td>
- <td class='text-left nowrap'>
- {$vo.biaoqian}
- </td>
- <td class='text-left nowrap'>
- {$vo.jiage}
- </td>
- <td class='text-left nowrap'>
- {if $vo['is_tuijian']==1}
- 是----{$vo.tuijian_remark}
- {else}
- 否
- {/if}
- </td>
- <td class='text-left nowrap'>
- <a data-dbclick class="layui-btn layui-btn-sm" data-modal='{:url("tuijian")}?id={$vo.id}'>热门推荐</a>
- <a data-dbclick class="layui-btn layui-btn-sm" data-modal='{:url("stock")}?id={$vo.id}'>标签</a>
- {if auth("store/goods/edit")}
- <a data-dbclick class="layui-btn layui-btn-sm" data-open='{:url("edit")}?id={$vo.id}'>编 辑</a>
- {else}
- <a data-tips-text="您没有编辑汽车的权限哦!" class="layui-btn layui-btn-sm layui-btn-primary layui-disabled">编 辑</a>
- {/if}
- {if auth("store/goods/remove")}
- <a class="layui-btn layui-btn-sm layui-btn-danger" data-confirm="确定要删除数据吗?" data-action="{:url('remove')}" data-value="id#{$vo.id}">删 除</a>
- {else}
- <a data-tips-text="您没有删除汽车的权限哦!" class="layui-btn layui-btn-sm layui-btn-primary layui-disabled">删 除</a>
- {/if}
- </td>
- </tr>
- {/foreach}
- </tbody>
- </table>
- {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
- </div>
- {/block}
|