nopassindex.html 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  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/nopassindex')}">
  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/nopassindex')}">清空</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/setBatchDel')}"
  43. data-subcheck="true">批量删除
  44. </button>
  45. <p class="help-block" style="font-weight: bold;">批量操作请谨慎</p>
  46. </div>
  47. <table class="table table-hover table-bordered">
  48. <thead>
  49. <tr>
  50. <th width="16">
  51. <label>
  52. <input type="checkbox" class="js-check-all" data-direction="x" data-checklist="js-check-x">
  53. </label>
  54. </th>
  55. <th align="center">ID</th>
  56. <th>会员昵称(ID)</th>
  57. <th style="max-width: 300px;">标题</th>
  58. <th>图片</th>
  59. <th>点赞数</th>
  60. <th>评论数</th>
  61. <th>分享数</th>
  62. <th>视频状态</th>
  63. <th>上下架状态</th>
  64. <th>发布时间</th>
  65. <th align="center">{:lang('ACTIONS')}</th>
  66. </tr>
  67. </thead>
  68. <tbody>
  69. <php>$isdel=array("0"=>"上架","1"=>"下架");$status=array("0"=>"待审核","1"=>"通过","2"=>"不通过");</php>
  70. <foreach name="lists" item="vo">
  71. <tr>
  72. <td>
  73. <input type="checkbox" class="js-check" data-yid="js-check-y" data-xid="js-check-x" name="ids[]" value="{$vo.id}">
  74. </td>
  75. <td align="center">{$vo.id}</td>
  76. <td>{$vo['userinfo']['user_nicename']} ({$vo['uid']})</td>
  77. <td style="max-width: 300px;">{$vo['title']}</td>
  78. <td><img src="{:get_upload_path($vo['thumb'])}" class="imgtip" /></td>
  79. <td>{$vo['likes']}</td>
  80. <td>{$vo['comments']}</td>
  81. <td>{$vo['shares']}</td>
  82. <td>{$status[$vo['status']]}</td>
  83. <td>{$isdel[$vo['isdel']]}</td>
  84. <td>{:date('Y-m-d H:i:s',$vo['addtime'])}</td>
  85. <td align="center">
  86. <a class="btn btn-xs btn-primary" href="javascript:void(0)" onclick="videoListen({$vo['id']})" >观看</a>
  87. <a class="btn btn-xs btn-primary" href="{:url('Video/edit',array('id'=>$vo['id'],'from'=>'nopassindex'))}" >编辑</a>
  88. <if condition="$vo['isdel'] eq '0'">
  89. <a class="btn btn-xs btn-primary" href="javascript:void (0)" onclick="commentlists({$vo['id']})" >评论列表</a>
  90. </if>
  91. <a class="btn btn-xs btn-danger" href="javascript:void (0)" onclick="del({$vo['id']})" >删除</a></if>
  92. </td>
  93. </tr>
  94. </foreach>
  95. </tbody>
  96. </table>
  97. <div class="table-actions">
  98. <button class="btn btn-danger btn-sm js-ajax-submit" type="submit" data-action="{:url('Video/setBatchDel')}"
  99. data-subcheck="true">批量删除
  100. </button>
  101. <p class="help-block" style="font-weight: bold;">批量操作请谨慎</p>
  102. </div>
  103. <div class="pagination">{$page}</div>
  104. </form>
  105. </div>
  106. <script src="__STATIC__/js/admin.js?t={$time}"></script>
  107. <script src="__STATIC__/layer/layer.js"></script>
  108. <script type="text/javascript">
  109. var del_status=0;
  110. function del(id){
  111. var p={$p};
  112. layer.open({
  113. type: 1,
  114. title:"是否确定将该视频删除",
  115. skin: 'layui-layer-rim', //加上边框
  116. area: ['30%', '30%'], //宽高
  117. 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>'
  118. });
  119. }
  120. function del_submit(id,p){
  121. var reason=$("#del_reason").val();
  122. if(del_status==1){
  123. return;
  124. }
  125. del_status=1;
  126. $.ajax({
  127. url: '/admin/video/del.html',
  128. type: 'POST',
  129. dataType: 'json',
  130. data: {id:id,reason: reason},
  131. success:function(data){
  132. var code=data.code;
  133. if(code!=0){
  134. layer.msg(data.msg);
  135. return;
  136. }
  137. del_status=0;
  138. if(data.msg=='您没有访问权限!'){
  139. layer.msg(data.msg);
  140. return;
  141. }
  142. //设置按钮不可用
  143. $("#delete").attr("disabled",true);
  144. $("#cancel").attr("disabled",true);
  145. layer.msg("删除成功",{icon: 1,time:1000},function(){
  146. layer.closeAll();
  147. <!-- location.href='/admin/video/nopassindex.html&page='+p; -->
  148. location.reload();
  149. });
  150. },
  151. error:function(e){
  152. $("#delete").attr("disabled",false);
  153. $("#cancel").attr("disabled",false);
  154. console.log(e);
  155. }
  156. });
  157. }
  158. /*获取视频评论列表*/
  159. function commentlists(videoid){
  160. layer.open({
  161. type: 2,
  162. title: '视频评论列表',
  163. shadeClose: true,
  164. shade: 0.8,
  165. area: ['60%', '90%'],
  166. content: '/admin/video/commentlists.html&videoid='+videoid
  167. });
  168. }
  169. </script>
  170. <script type="text/javascript">
  171. function videoListen(id){
  172. layer.open({
  173. type: 2,
  174. title: '观看视频',
  175. shadeClose: true,
  176. shade: 0.8,
  177. area: ['500px', '750px'],
  178. content: '/admin/video/video_listen.html&id='+id
  179. });
  180. }
  181. </script>
  182. </body>
  183. </html>