lowervideo.html 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  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/lowervideo')}">
  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/lowervideo')}">清空</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. <p class="help-block" style="font-weight: bold;">批量操作请谨慎</p>
  53. </div>
  54. <table class="table table-hover table-bordered">
  55. <thead>
  56. <tr>
  57. <th width="16">
  58. <label>
  59. <input type="checkbox" class="js-check-all" data-direction="x" data-checklist="js-check-x">
  60. </label>
  61. </th>
  62. <th align="center">ID</th>
  63. <th>会员昵称(ID)</th>
  64. <th style="max-width: 300px;">标题</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>{:date('Y-m-d H:i:s',$vo['addtime'])}</td>
  90. <td align="center">
  91. <a class="btn btn-xs btn-primary" href="javascript:void(0)" onclick="videoListen({$vo['id']})" >观看</a>
  92. <a class="btn btn-xs btn-primary" href="{:url('Video/edit',array('id'=>$vo['id'],'from'=>'lowervideo'))}" >编辑</a>
  93. <if condition="$vo['isdel'] eq '1'">
  94. <a href="{:url('Video/set_shangjia',array('id'=>$vo['id']))}" class="btn btn-xs btn-primary js-ajax-dialog-btn" data-msg="您确定要将该视频上架吗?">上架</a>
  95. </if>
  96. <a class="btn btn-xs btn-danger" href="javascript:void (0)" onclick="del({$vo['id']})" >删除</a>
  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/setBatchDel')}"
  104. data-subcheck="true">批量删除
  105. </button>
  106. <p class="help-block" style="font-weight: bold;">批量操作请谨慎</p>
  107. </div>
  108. <div class="pagination">{$page}</div>
  109. </form>
  110. </div>
  111. <script src="__STATIC__/js/admin.js?t={$time}"></script>
  112. <script src="__STATIC__/layer/layer.js"></script>
  113. <script type="text/javascript">
  114. var del_status=0;
  115. function del(id){
  116. var p={$p};
  117. layer.open({
  118. type: 1,
  119. title:"是否确定将该视频删除",
  120. skin: 'layui-layer-rim', //加上边框
  121. area: ['30%', '30%'], //宽高
  122. 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>'
  123. });
  124. }
  125. function del_submit(id,p){
  126. var reason=$("#del_reason").val();
  127. if(del_status==1){
  128. return;
  129. }
  130. del_status=1;
  131. $.ajax({
  132. url: '/admin/video/del.html',
  133. type: 'POST',
  134. dataType: 'json',
  135. data: {id:id,reason: reason},
  136. success:function(data){
  137. var code=data.code;
  138. if(code!=0){
  139. layer.msg(data.msg);
  140. return;
  141. }
  142. del_status=0;
  143. if(data.msg=='您没有访问权限!'){
  144. layer.msg(data.msg);
  145. return;
  146. }
  147. //设置按钮不可用
  148. $("#delete").attr("disabled",true);
  149. $("#cancel").attr("disabled",true);
  150. layer.msg("删除成功",{icon: 1,time:1000},function(){
  151. layer.closeAll();
  152. //location.href='/admin/video/lowervideo.html&p='+p;
  153. location.reload();
  154. });
  155. },
  156. error:function(e){
  157. $("#delete").attr("disabled",false);
  158. $("#cancel").attr("disabled",false);
  159. console.log(e);
  160. }
  161. });
  162. }
  163. /*获取视频评论列表*/
  164. function commentlists(videoid){
  165. layer.open({
  166. type: 2,
  167. title: '视频评论列表',
  168. shadeClose: true,
  169. shade: 0.8,
  170. area: ['60%', '90%'],
  171. content: '/admin/video/commentlists.html&videoid='+videoid
  172. });
  173. }
  174. </script>
  175. <script type="text/javascript">
  176. function videoListen(id){
  177. layer.open({
  178. type: 2,
  179. title: '观看视频',
  180. shadeClose: true,
  181. shade: 0.8,
  182. area: ['500px', '750px'],
  183. content: '/admin/video/video_listen.html&id='+id
  184. });
  185. }
  186. </script>
  187. </body>
  188. </html>