index.html 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {extend name='admin@main'}
  2. {block name="content"}
  3. <div class="think-box-shadow">
  4. <!-- {include file='examine/index_search'}-->
  5. <table class="layui-table margin-top-10" lay-skin="line">
  6. {notempty name='list'}
  7. <thead>
  8. <tr>
  9. <th class='list-table-check-td think-checkbox'>
  10. <input data-auto-none data-check-target='.list-check-box' type='checkbox'>
  11. </th>
  12. <th class='text-left nowrap'>序号</th>
  13. <th class='text-left nowrap'>姓名</th>
  14. <th class='text-left nowrap'>评论文章</th>
  15. <th class='text-left nowrap'>评论内容</th>
  16. <th class='text-left nowrap'>提交时间</th>
  17. <th class='text-left nowrap'>审核时间</th>
  18. <th class='text-left nowrap'>操作</th>
  19. </tr>
  20. </thead>
  21. {/notempty}
  22. <tbody>
  23. {foreach $list as $key=>$vo}
  24. <tr>
  25. <td class='list-table-check-td think-checkbox'>
  26. <label><input class="list-check-box" value='{$vo.id}' type='checkbox'></label>
  27. </td>
  28. <td class='list-table-check-td think-checkbox'>
  29. <div class="inline-block">{$vo.id|default='--'}</div>
  30. </td>
  31. <td class='text-left nowrap'>
  32. <div class="inline-block">{$vo.username|default='--'}</div>
  33. </td>
  34. <td class='text-left'>{$vo.article_title|default='--'}</td>
  35. <!-- <td> <img data-tips-image style="width:20px;height:20px;vertical-align:top" src="{$vo.c_show_image|default=''}" class="margin-right-5"></td>-->
  36. <!-- <td> <img data-tips-image style="width:20px;height:20px;vertical-align:top" src="{$vo.n_show_image|default=''}" class="margin-right-5"></td>-->
  37. <!-- <td> <img data-tips-image style="width:20px;height:20px;vertical-align:top" src="{$vo.image|default=''}" class="margin-right-5"></td>-->
  38. <td class='text-left'>{$vo.content}</td>
  39. <td class='text-left'>{$vo.create_time|format_datetime}</td>
  40. {if $vo.audit==0}
  41. <td class='text-left'>待审核</td>
  42. {else}
  43. <td class='text-left'>{$vo.check_time|format_datetime}</td>
  44. {/if}
  45. <td class='text-left'>
  46. {if $vo.audit==0}
  47. <a data-dbclick data-title="通过" class="layui-btn layui-btn-xs" data-action="{:url('audit')}" data-value="id#{$vo.id}">通 过</a>
  48. <a data-dbclick data-title="拒绝" class="layui-btn layui-btn-xs layui-btn-danger" data-action="{:url('refuse')}" data-value="id#{$vo.id}">拒 绝</a>
  49. {/if}
  50. {if $vo.audit==1}
  51. 已通过
  52. {/if}
  53. {if $vo.audit==2}
  54. 已拒绝
  55. {/if}
  56. </td>
  57. </tr>
  58. {/foreach}
  59. </tbody>
  60. </table>
  61. {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
  62. </div>
  63. {/block}