index.html 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <include file="public@header"/>
  2. </head>
  3. <body>
  4. <div class="wrap">
  5. <ul class="nav nav-tabs">
  6. <li class="active"><a >举报列表</a></li>
  7. </ul>
  8. <form class="well form-inline margin-top-20" method="post" action="{:url('Report/index')}">
  9. 状态:
  10. <select class="select_2 form-control" name="status">
  11. <option value="">全部</option>
  12. <option value="0" <if condition="input('request.status') eq 0">selected</if> >处理中</option>
  13. <option value="1" <if condition="input('request.status') eq 1">selected</if> >已处理</option>
  14. </select>
  15. 时间:
  16. <input type="text" name="start_time" class="js-bootstrap-date form-control" value="{:input('request.start_time')}" autocomplete="off" placeholder="开
  17. 始时间">-
  18. <input type="text" name="end_time" class="js-bootstrap-date form-control" value="{:input('request.end_time')}" autocomplete="off" placeholder="结束时
  19. 间">&nbsp; &nbsp;
  20. 关键字:
  21. <input class="form-control" type="text" name="keyword" style="width: 200px;" value="{:input('request.keyword')}" placeholder="请输入会员ID">
  22. <input type="submit" class="btn btn-primary" value="搜索"/>
  23. <a class="btn btn-danger" href="{:url('Admin/Report/index')}">清空</a>
  24. </form>
  25. <form method="post" class="js-ajax-form">
  26. <table class="table table-hover table-bordered">
  27. <thead>
  28. <tr>
  29. <th>ID</th>
  30. <th align="center">举报人</th>
  31. <th>被举报人</th>
  32. <th>举报理由</th>
  33. <th>举报内容</th>
  34. <th>图片</th>
  35. <th>状态</th>
  36. <th>提交时间</th>
  37. <th>处理时间</th>
  38. <th align="center">{:lang('ACTIONS')}</th>
  39. </tr>
  40. </thead>
  41. <tbody>
  42. <php>$status=array("0"=>"处理中","1"=>"已处理", "2"=>"审核失败");</php>
  43. <foreach name="lists" item="vo">
  44. <tr>
  45. <td>{$vo.id}</td>
  46. <td>{$vo['userinfo']['user_nicename']} ( {$vo['uid']} )</td>
  47. <td>{$vo['touserinfo']['user_nicename']} ( {$vo['touid']} )</td>
  48. <td>{$vo['classify']}</td>
  49. <td style="max-width: 200px;"><?php echo nl2br($vo['content']);?></td>
  50. <td>
  51. <if condition="$vo['thumb'] neq ''">
  52. <img src="{:get_upload_path($vo['thumb'])}" class="imgtip" style="width: 100px;height: auto;" />
  53. <else />
  54. --
  55. </if>
  56. </td>
  57. <td>{$status[$vo['status']]}</td>
  58. <td>{:date('Y-m-d H:i:s',$vo['addtime'])}</td>
  59. <td><if condition="$vo['uptime'] gt 0">{:date('Y-m-d H:i:s',$vo['uptime'])}<else />--</if></td>
  60. <td align="center">
  61. <if condition="$vo['status'] eq '0'" >
  62. <a href="{:url('Report/setstatus',array('id'=>$vo['id']))}" class="btn btn-xs btn-danger js-ajax-dialog-btn" data-msg="您确定要标记处理吗?同意的话将通知举报人">标记处理</a>
  63. </if>
  64. <if condition="$vo['touserinfo']['user_status'] eq '1'" >
  65. <a href="{:url('Report/ban',array('id'=>$vo['touid']))}" class="btn btn-xs btn-danger js-ajax-dialog-btn" data-msg="您确定要将该用户拉黑吗?">拉黑用户</a>
  66. </if>
  67. <a href="{:url('Report/ban_video',array('id'=>$vo['touid']))}" class="btn btn-xs btn-danger js-ajax-dialog-btn" data-msg="您确定要下架该用户目前的所有视频吗?">下架视频</a>
  68. <a href="{:url('Report/ban_all',array('id'=>$vo['id']))}" class="btn btn-xs btn-danger js-ajax-dialog-btn" data-msg="您确定要全部执行吗?">标记处理+禁用用户+下架视频</a>
  69. <a href="{:url('Report/del',array('id'=>$vo['id']))}" class="btn btn-xs btn-danger js-ajax-dialog-btn" data-msg="您确定要删除吗?">删除</a>
  70. </td>
  71. </tr>
  72. </foreach>
  73. </tbody>
  74. </table>
  75. <div class="pagination">{$page}</div>
  76. </form>
  77. </div>
  78. <script src="__STATIC__/js/admin.js"></script>
  79. </body>
  80. </html>