index.html 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. <include file="public@header"/>
  2. <style>
  3. .table img{
  4. max-width:100px;
  5. max-height:100px;
  6. }
  7. .textArea textarea{
  8. width:90%;padding:3%;height:80%;margin:0 auto;margin-top:30px;
  9. margin-left: 2%;
  10. }
  11. .textArea_btn{
  12. text-align: right;
  13. margin-top: 30px;
  14. }
  15. .textArea_btn input{
  16. margin-right: 30px;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <div class="wrap js-check-wrap">
  22. <ul class="nav nav-tabs">
  23. <li class="active"><a >等待审核列表</a></li>
  24. </ul>
  25. <form class="well form-inline margin-top-20" method="post" action="{:url('Video/index')}">
  26. 排序:
  27. <select class="select_2 form-control" name="ordertype">
  28. <option value="">默认</option>
  29. <option value="1" <if condition="input('request.ordertype') eq 1">selected</if> >评论数排序</option>
  30. <option value="2" <if condition="input('request.ordertype') eq 2">selected</if> >点赞数排序</option>
  31. <option value="3" <if condition="input('request.ordertype') eq 3">selected</if> >分享数排序</option>
  32. </select>
  33. 关键字:
  34. <input class="form-control" type="text" name="keyword" style="width: 200px;" value="{:input('request.keyword')}" placeholder="视频ID/会员ID">
  35. <input class="form-control" type="text" name="keyword1" style="width: 200px;" value="{:input('request.keyword1')}" placeholder="视频标题">
  36. <input class="form-control" type="text" name="keyword2" style="width: 200px;" value="{:input('request.keyword2')}" placeholder="用户名称">
  37. <input type="submit" class="btn btn-primary" value="搜索">
  38. <a class="btn btn-danger" href="{:url('Admin/Video/index')}">清空</a>
  39. </form>
  40. <form method="post" class="js-ajax-form">
  41. <div class="table-actions">
  42. <button class="btn btn-danger btn-sm js-ajax-submit" type="submit" data-action="{:url('Video/setBatchStatus',['status'=>1])}"
  43. data-subcheck="true">批量通过
  44. </button>
  45. <button class="btn btn-danger btn-sm js-ajax-submit" type="submit" data-action="{:url('Video/setBatchStatus',['status'=>2])}"
  46. data-subcheck="true">批量拒绝
  47. </button>
  48. <button class="btn btn-danger btn-sm js-ajax-submit" type="submit" data-action="{:url('Video/setBatchDel')}"
  49. data-subcheck="true">批量删除
  50. </button>
  51. <p class="help-block" style="font-weight: bold;">批量操作请谨慎</p>
  52. </div>
  53. <table class="table table-hover table-bordered">
  54. <thead>
  55. <tr>
  56. <th width="16">
  57. <label>
  58. <input type="checkbox" class="js-check-all" data-direction="x" data-checklist="js-check-x">
  59. </label>
  60. </th>
  61. <th align="center">ID</th>
  62. <th>会员昵称(ID)</th>
  63. <th style="max-width: 300px;">标题</th>
  64. <th>图片</th>
  65. <th>点赞数</th>
  66. <th>评论数</th>
  67. <th>分享数</th>
  68. <th>视频状态</th>
  69. <th>上下架状态</th>
  70. <th>发布时间</th>
  71. <th align="center">{:lang('ACTIONS')}</th>
  72. </tr>
  73. </thead>
  74. <tbody>
  75. <php>$isdel=array("0"=>"上架","1"=>"下架");$status=array("0"=>"待审核","1"=>"通过","2"=>"不通过");</php>
  76. <foreach name="lists" item="vo">
  77. <tr>
  78. <td>
  79. <input type="checkbox" class="js-check" data-yid="js-check-y" data-xid="js-check-x" name="ids[]" value="{$vo.id}">
  80. </td>
  81. <td align="center">{$vo.id}</td>
  82. <td>{$vo['userinfo']['user_nicename']} ({$vo['uid']})</td>
  83. <td style="max-width: 300px;">{$vo['title']}</td>
  84. <td><img src="{:get_upload_path($vo['thumb'])}" class="imgtip" /></td>
  85. <td>{$vo['likes']}</td>
  86. <td>{$vo['comments']}</td>
  87. <td>{$vo['shares']}</td>
  88. <td>{$status[$vo['status']]}</td>
  89. <td>{$isdel[$vo['isdel']]}</td>
  90. <td>{:date('Y-m-d H:i:s',$vo['addtime'])}</td>
  91. <td align="center">
  92. <a class="btn btn-xs btn-primary" href="javascript:void(0)" onclick="videoListen({$vo['id']})" >观看</a>
  93. <a class="btn btn-xs btn-primary" href="{:url('Video/edit',array('id'=>$vo['id'],'from'=>'index'))}" >编辑</a>
  94. <if condition="$vo['isdel'] eq '0'">
  95. <a class="btn btn-xs btn-primary" href="javascript:void (0)" onclick="commentlists({$vo['id']})" >评论列表</a>
  96. <a class="btn btn-xs btn-danger" href="javascript:void (0)" onclick="del({$vo['id']})" >删除</a></if>
  97. </td>
  98. </tr>
  99. </foreach>
  100. </tbody>
  101. </table>
  102. <div class="table-actions">
  103. <button class="btn btn-danger btn-sm js-ajax-submit" type="submit" data-action="{:url('Video/setBatchStatus',['status'=>1])}"
  104. data-subcheck="true">批量通过
  105. </button>
  106. <button class="btn btn-danger btn-sm js-ajax-submit" type="submit" data-action="{:url('Video/setBatchStatus',['status'=>2])}"
  107. data-subcheck="true">批量拒绝
  108. </button>
  109. <button class="btn btn-danger btn-sm js-ajax-submit" type="submit" data-action="{:url('Video/setBatchDel')}"
  110. data-subcheck="true">批量删除
  111. </button>
  112. <p class="help-block" style="font-weight: bold;">批量操作请谨慎</p>
  113. </div>
  114. <div class="pagination">{$page}</div>
  115. </form>
  116. </div>
  117. <script src="__STATIC__/js/admin.js?t={$time}"></script>
  118. <script src="__STATIC__/layer/layer.js"></script>
  119. <script type="text/javascript">
  120. var del_status=0;
  121. function del(id){
  122. var p={$p};
  123. layer.open({
  124. type: 1,
  125. title:"是否确定将该视频删除",
  126. skin: 'layui-layer-rim', //加上边框
  127. area: ['30%', '30%'], //宽高
  128. content: '<div class="textArea"><textarea id="del_reason" maxlength="50" placeholder="请输入删除原因,最多50字" /> </div><div class="textArea_btn" ><input type="button" id="delete" value="删除" onclick="del_submit('+id+','+p+')" /><input type="button" id="cancel" onclick="layer.closeAll();" value="取消" /></div>'
  129. });
  130. }
  131. function del_submit(id,p){
  132. var reason=$("#del_reason").val();
  133. if(del_status==1){
  134. return;
  135. }
  136. del_status=1;
  137. $.ajax({
  138. url: '/admin/video/setXiajia.html',
  139. type: 'POST',
  140. dataType: 'json',
  141. data: {id:id,reason: reason},
  142. success:function(data){
  143. var code=data.code;
  144. if(code!=0){
  145. layer.msg(data.msg);
  146. return;
  147. }
  148. del_status=0;
  149. if(data.msg=='您没有访问权限!'){
  150. layer.msg(data.msg);
  151. return;
  152. }
  153. //设置按钮不可用
  154. $("#delete").attr("disabled",true);
  155. $("#cancel").attr("disabled",true);
  156. layer.msg("删除成功",{icon: 1,time:1000},function(){
  157. layer.closeAll();
  158. <!-- location.href='/admin/video/nopassindex.html&page='+p; -->
  159. location.reload();
  160. });
  161. },
  162. error:function(e){
  163. $("#delete").attr("disabled",false);
  164. $("#cancel").attr("disabled",false);
  165. console.log(e);
  166. }
  167. });
  168. }
  169. /*获取视频评论列表*/
  170. function commentlists(videoid){
  171. layer.open({
  172. type: 2,
  173. title: '视频评论列表',
  174. shadeClose: true,
  175. shade: 0.8,
  176. area: ['60%', '90%'],
  177. content: '/admin/video/commentlists.html&videoid='+videoid
  178. });
  179. }
  180. </script>
  181. <script type="text/javascript">
  182. function videoListen(id){
  183. layer.open({
  184. type: 2,
  185. title: '观看视频',
  186. shadeClose: true,
  187. shade: 0.8,
  188. area: ['500px', '750px'],
  189. content: '/admin/video/video_listen.html&id='+id
  190. });
  191. }
  192. </script>
  193. </body>
  194. </html>