|
@@ -1,4 +1,7 @@
|
|
|
{extend name='admin@main'}
|
|
|
+{block name="button"}
|
|
|
+<button data-action='{:url("del")}' data-confirm="确定要删除吗?" data-csrf="{:systoken('del')}" data-rule="id#{key}" class='layui-btn layui-btn-sm layui-btn-primary'>批量删除</button>
|
|
|
+{/block}
|
|
|
{block name="content"}
|
|
|
<div class="think-box-shadow">
|
|
|
|
|
@@ -30,6 +33,8 @@
|
|
|
{notempty name='list'}
|
|
|
<thead>
|
|
|
<tr>
|
|
|
+ <th class='list-table-check-td think-checkbox'><input data-auto-none data-check-target='.list-check-box' type='checkbox'></th>
|
|
|
+ <th class='text-left nowrap'>ID</th>
|
|
|
<th class='text-left nowrap'>举报用户</th>
|
|
|
<th class='text-left nowrap'>举报图文</th>
|
|
|
<th class='text-left nowrap' style="width: 15%">举报原因</th>
|
|
@@ -42,6 +47,8 @@
|
|
|
<tbody>
|
|
|
{foreach $list as $key=>$vo}
|
|
|
<tr>
|
|
|
+ <td class='list-table-check-td think-checkbox'><input class="list-check-box" value='{$vo.id}' type='checkbox'></td>
|
|
|
+ <td class='text-left'>{$vo.id|default='--'}</td>
|
|
|
<td class='text-left nowrap'>
|
|
|
{notempty name='vo.headimg'}
|
|
|
<img data-tips-image style="width:60px;height:60px" src="{$vo.headimg|default=''}" class="margin-right-5 text-top">
|