12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- {extend name='admin@main'}
- {block name="content"}
- <div class="think-box-shadow">
- <!-- {include file='examine/index_search'}-->
- <table class="layui-table margin-top-10" lay-skin="line">
- {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'>序号</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>
- <td class='list-table-check-td think-checkbox'>
- <label><input class="list-check-box" value='{$vo.id}' type='checkbox'></label>
- </td>
- <td class='list-table-check-td think-checkbox'>
- <div class="inline-block">{$vo.id|default='--'}</div>
- </td>
- <td class='text-left nowrap'>
- <div class="inline-block">{$vo.username|default='--'}</div>
- </td>
- <td class='text-left'>{$vo.article_title|default='--'}</td>
- <!-- <td> <img data-tips-image style="width:20px;height:20px;vertical-align:top" src="{$vo.c_show_image|default=''}" class="margin-right-5"></td>-->
- <!-- <td> <img data-tips-image style="width:20px;height:20px;vertical-align:top" src="{$vo.n_show_image|default=''}" class="margin-right-5"></td>-->
- <!-- <td> <img data-tips-image style="width:20px;height:20px;vertical-align:top" src="{$vo.image|default=''}" class="margin-right-5"></td>-->
- <td class='text-left'>{$vo.content}</td>
- <td class='text-left'>{$vo.create_time|format_datetime}</td>
- {if $vo.audit==0}
- <td class='text-left'>待审核</td>
- {else}
- <td class='text-left'>{$vo.check_time|format_datetime}</td>
- {/if}
- <td class='text-left'>
- {if $vo.audit==0}
- <a data-dbclick data-title="通过" class="layui-btn layui-btn-xs" data-action="{:url('audit')}" data-value="id#{$vo.id}">通 过</a>
- <a data-dbclick data-title="拒绝" class="layui-btn layui-btn-xs layui-btn-danger" data-action="{:url('refuse')}" data-value="id#{$vo.id}">拒 绝</a>
- {/if}
- {if $vo.audit==1}
- 已通过
- {/if}
- {if $vo.audit==2}
- 已拒绝
- {/if}
- </td>
- </tr>
- {/foreach}
- </tbody>
- </table>
- {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
- </div>
- {/block}
|