passindex.html 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  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/passindex')}">
  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. <select class="select_2 form-control" name="classid">
  35. <option value="">默认</option>
  36. <volist name="classify" id="vo">
  37. <option value="{$vo.id}" <if condition="input('request.classid') eq $vo.id">selected</if> >{$vo.title}</option>
  38. </volist>
  39. </select>
  40. 关键字:
  41. <input class="form-control" type="text" name="keyword" style="width: 200px;" value="{:input('request.keyword')}" placeholder="视频ID/会员ID">
  42. <input class="form-control" type="text" name="keyword1" style="width: 200px;" value="{:input('request.keyword1')}" placeholder="视频标题">
  43. <input class="form-control" type="text" name="keyword2" style="width: 200px;" value="{:input('request.keyword2')}" placeholder="用户名称">
  44. <input type="submit" class="btn btn-primary" value="搜索">
  45. <a class="btn btn-danger" href="{:url('Admin/Video/passindex')}">清空</a>
  46. </form>
  47. <form method="post" class="js-ajax-form">
  48. <div class="table-actions">
  49. <button class="btn btn-danger btn-sm js-ajax-submit" type="submit" data-action="{:url('Video/setBatchDel')}"
  50. data-subcheck="true">批量删除
  51. </button>
  52. <button class="btn btn-danger btn-sm js-ajax-submit" type="submit" data-action="{:url('Video/setBatchXiajia',array('status'=>'1'))}"
  53. data-subcheck="true">批量下架
  54. </button>
  55. <p class="help-block" style="font-weight: bold;">批量操作请谨慎</p>
  56. </div>
  57. <table class="table table-hover table-bordered">
  58. <thead>
  59. <tr>
  60. <th width="16">
  61. <label>
  62. <input type="checkbox" class="js-check-all" data-direction="x" data-checklist="js-check-x">
  63. </label>
  64. </th>
  65. <th align="center">ID</th>
  66. <th>会员昵称(ID)</th>
  67. <th style="max-width: 300px;">标题</th>
  68. <th>图片</th>
  69. <th>点赞数</th>
  70. <th>评论数</th>
  71. <th>分享数</th>
  72. <th>视频状态</th>
  73. <th>上下架状态</th>
  74. <th>发布时间</th>
  75. <th align="center">{:lang('ACTIONS')}</th>
  76. </tr>
  77. </thead>
  78. <tbody>
  79. <php>$isdel=array("0"=>"上架","1"=>"下架");$status=array("0"=>"待审核","1"=>"通过","2"=>"不通过");</php>
  80. <foreach name="lists" item="vo">
  81. <tr>
  82. <td>
  83. <input type="checkbox" class="js-check" data-yid="js-check-y" data-xid="js-check-x" name="ids[]" value="{$vo.id}">
  84. </td>
  85. <td align="center">{$vo.id}</td>
  86. <td>{$vo['userinfo']['user_nicename']} ({$vo['uid']})</td>
  87. <td style="max-width: 300px;">{$vo['title']}</td>
  88. <td><img src="{:get_upload_path($vo['thumb'])}" class="imgtip" /></td>
  89. <td>{$vo['likes']}</td>
  90. <td>{$vo['comments']}</td>
  91. <td>{$vo['shares']}</td>
  92. <td>{$status[$vo['status']]}</td>
  93. <td>{$isdel[$vo['isdel']]}</td>
  94. <td>{:date('Y-m-d H:i:s',$vo['addtime'])}</td>
  95. <td align="center">
  96. <a class="btn btn-xs btn-primary" href="javascript:void(0)" onclick="videoListen({$vo['id']})" >观看</a>
  97. <a class="btn btn-xs btn-primary" href="{:url('Video/edit',array('id'=>$vo['id'],'from'=>'passindex'))}" >编辑</a>
  98. <if condition="$vo['isdel'] eq '0'">
  99. <a class="btn btn-xs btn-danger" href="javascript:void (0)" onclick="xiajia({$vo['id']})" >下架</a></if>
  100. <a class="btn btn-xs btn-primary" href="javascript:void (0)" onclick="commentlists({$vo['id']})" >评论列表</a>
  101. <a class="btn btn-xs btn-danger" href="javascript:void (0)" onclick="del({$vo['id']})" >删除</a>
  102. </td>
  103. </tr>
  104. </foreach>
  105. </tbody>
  106. </table>
  107. <div class="table-actions">
  108. <button class="btn btn-danger btn-sm js-ajax-submit" type="submit" data-action="{:url('Video/setBatchDel')}"
  109. data-subcheck="true">批量删除
  110. </button>
  111. <button class="btn btn-danger btn-sm js-ajax-submit" type="submit" data-action="{:url('Video/setBatchXiajia',array('status'=>'1'))}"
  112. data-subcheck="true">批量下架
  113. </button>
  114. <p class="help-block" style="font-weight: bold;">批量操作请谨慎</p>
  115. </div>
  116. <div class="pagination">{$page}</div>
  117. </form>
  118. </div>
  119. <script src="__STATIC__/js/admin.js?t={$time}"></script>
  120. <script src="__STATIC__/layer/layer.js"></script>
  121. <script type="text/javascript">
  122. var xiajia_status=0;
  123. var del_status=0;
  124. function xiajia(id){
  125. var p={$p};
  126. layer.open({
  127. type: 1,
  128. title:"是否确定将该视频下架",
  129. skin: 'layui-layer-rim', //加上边框
  130. area: ['30%', '30%'], //宽高
  131. content: '<div class="textArea"><textarea id="xiajia_reason" maxlength="50" placeholder="请输入下架原因,最多50字" /> </div><div class="textArea_btn" ><input type="button" id="xiajia" value="下架" onclick="xiajia_submit('+id+','+p+')" /><input type="button" id="cancel" onclick="layer.closeAll();" value="取消" /></div>'
  132. });
  133. }
  134. function xiajia_submit(id,p){
  135. var reason=$("#xiajia_reason").val();
  136. if(xiajia_status==1){
  137. return;
  138. }
  139. xiajia_status=1;
  140. $.ajax({
  141. url: '/admin/video/setXiajia.html',
  142. type: 'POST',
  143. dataType: 'json',
  144. data: {id:id,reason: reason},
  145. success:function(data){
  146. var code=data.code;
  147. if(code!=0){
  148. layer.msg(data.msg);
  149. return;
  150. }
  151. xiajia_status=0;
  152. //设置按钮不可用
  153. $("#xiajia").attr("disabled",true);
  154. $("#cancel").attr("disabled",true);
  155. layer.msg("下架成功",{icon: 1,time:1000},function(){
  156. layer.closeAll();
  157. //location.href='/index.php?g=Admin&m=Video&a=index&p='+p;
  158. location.reload();
  159. });
  160. },
  161. error:function(e){
  162. $("#xiajia").attr("disabled",false);
  163. $("#cancel").attr("disabled",false);
  164. console.log(e);
  165. }
  166. });
  167. }
  168. function del(id){
  169. var p={$p};
  170. layer.open({
  171. type: 1,
  172. title:"是否确定将该视频删除",
  173. skin: 'layui-layer-rim', //加上边框
  174. area: ['30%', '30%'], //宽高
  175. 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>'
  176. });
  177. }
  178. function del_submit(id,p){
  179. var reason=$("#del_reason").val();
  180. if(del_status==1){
  181. return;
  182. }
  183. del_status=1;
  184. $.ajax({
  185. url: '/admin/video/del.html',
  186. type: 'POST',
  187. dataType: 'json',
  188. data: {id:id,reason: reason},
  189. success:function(data){
  190. var code=data.code;
  191. if(code!=0){
  192. layer.msg(data.msg);
  193. return;
  194. }
  195. del_status=0;
  196. if(data.msg=='您没有访问权限!'){
  197. layer.msg(data.msg);
  198. return;
  199. }
  200. //设置按钮不可用
  201. $("#delete").attr("disabled",true);
  202. $("#cancel").attr("disabled",true);
  203. layer.msg("删除成功",{icon: 1,time:1000},function(){
  204. layer.closeAll();
  205. <!-- location.href='/admin/video/nopassindex.html&page='+p; -->
  206. location.reload();
  207. });
  208. },
  209. error:function(e){
  210. $("#delete").attr("disabled",false);
  211. $("#cancel").attr("disabled",false);
  212. console.log(e);
  213. }
  214. });
  215. }
  216. /*获取视频评论列表*/
  217. function commentlists(videoid){
  218. layer.open({
  219. type: 2,
  220. title: '视频评论列表',
  221. shadeClose: true,
  222. shade: 0.8,
  223. area: ['60%', '90%'],
  224. content: '/admin/video/commentlists.html&videoid='+videoid
  225. });
  226. }
  227. </script>
  228. <script type="text/javascript">
  229. function videoListen(id){
  230. layer.open({
  231. type: 2,
  232. title: '观看视频',
  233. shadeClose: true,
  234. shade: 0.8,
  235. area: ['500px', '750px'],
  236. content: '/admin/video/video_listen.html&id='+id
  237. });
  238. }
  239. </script>
  240. </body>
  241. </html>