index.html 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. <include file="public@header" />
  2. <style>
  3. li{
  4. list-style:none;
  5. }
  6. .js-ajax-form li
  7. {
  8. list-style:none;
  9. width:160px;
  10. height:390px;
  11. border: 1px solid #C2D1D8;
  12. float:left;
  13. margin:10px;
  14. }
  15. .js-ajax-form li button
  16. {
  17. margin-left:30px;
  18. }
  19. .js-ajax-form li span
  20. {
  21. display:block;
  22. text-align:center
  23. }
  24. .js-ajax-form li .name
  25. {
  26. width:157px;
  27. overflow:hidden;
  28. white-space:nowrap;
  29. text-overflow:ellipsis;
  30. }
  31. .full_btn
  32. {
  33. float: left;
  34. height: 30px;
  35. padding: 0 18px;
  36. background: #1dccaa;
  37. border-radius: 4px;
  38. line-height: 30px;
  39. text-align: center;
  40. color: #fff;
  41. font-size: 14px;
  42. cursor: pointer;
  43. text-decoration: none;
  44. margin-left: 10px;
  45. }
  46. .full_btn:hover
  47. {
  48. background: #356f64;
  49. color: #fff;
  50. text-decoration:none;
  51. }
  52. .xgplayer-start svg{
  53. margin: 0 !important;
  54. }
  55. .voice_live_bg{
  56. position: relative;
  57. left: 0;
  58. top: 0;
  59. background: url(__STATIC__/admin/images/monitor/voice_live_bg.png) no-repeat;
  60. width: 100%;
  61. height: 100%;
  62. z-index: -1;
  63. }
  64. .live_style{
  65. width:100%;
  66. height:83%;
  67. }
  68. .voice_live_style{
  69. width:100%;
  70. height:83%;
  71. position: relative;
  72. top: -280px;
  73. left: 0;
  74. z-index: -2;
  75. }
  76. </style>
  77. </head>
  78. <body>
  79. <script src="__STATIC__/js/admin.js"></script>
  80. <script src="__STATIC__/js/socket.io.js"></script>
  81. <script src="__STATIC__/xigua/xgplayer.js?t=1610159896" type="text/javascript"></script>
  82. <script src="__STATIC__/xigua/index.js?t=1610159896" type="text/javascript"></script>
  83. <script src="__STATIC__/xigua/xgplayer-flv.js?t=1610159896" type="text/javascript"></script>
  84. <script src="__STATIC__/xigua/player.js?t=1586844774" type="text/javascript"></script>
  85. <div class="wrap">
  86. <ul class="nav nav-tabs">
  87. <li class="active"><a >监控</a></li>
  88. </ul>
  89. <form method="post" class="js-ajax-form" >
  90. <ul>
  91. <foreach name="lists" item="v">
  92. <li class="mytd">
  93. <span>开播时长:<?php
  94. $times = time()-$v['showid'];
  95. $result = '';
  96. $hour = floor($times/3600);
  97. $minute = floor(($times-3600 * $hour)/60);
  98. $second = floor((($times-3600 * $hour) - 60 * $minute) % 60);
  99. $result = $hour.':'.$minute.':'.$second;
  100. echo $result;?>
  101. </span>
  102. <div style="width: 158px;height: 280px;">
  103. <div id="<?php echo $v['uid'];?>" class="live_style"></div>
  104. </div>
  105. <div>
  106. <span class="name">主播:<?php echo $v['userinfo']['user_nicename'];?></span>
  107. <span>房间号:<?php echo $v['uid'];?></span>
  108. <span>视频直播</span>
  109. <div style="text-align:center;">
  110. <a onclick="closeRoom('<?php echo $v['uid'];?>')" class="btn btn-xs btn-warning">关闭</a>
  111. <!-- <a onclick="fullRoom('<?php echo $v['uid'];?>')" class="full_btn mybtn">大屏</a> -->
  112. </div>
  113. </div>
  114. </li>
  115. <script type="text/javascript">
  116. (function(){
  117. xgPlays('{$v['uid']}','{$v['url']}');
  118. })()
  119. </script>
  120. </foreach>
  121. </ul>
  122. </form>
  123. <div style="clear:both;"></div>
  124. <div class="pagination" style="clear:both">{$page}</div>
  125. </div>
  126. <script type="text/javascript">
  127. var socket = new io("{$config['chatserver']}");
  128. function closeRoom(roomId){
  129. var data2 = {"token":"1234567","roomnum":roomId};
  130. $.ajax({
  131. async: false,
  132. url: '/admin/Monitor/stopRoom',
  133. data:{uid:roomId},
  134. dataType: "json",
  135. success: function(data){
  136. console.log(data);
  137. if(data.status ==0){
  138. alert(data.info);
  139. }else{
  140. socket.emit("superadminaction",data2);
  141. alert("房间已关闭");
  142. location.reload();
  143. }
  144. },
  145. error:function(XMLHttpRequest, textStatus, errorThrown){
  146. alert('关闭失败,请重试');
  147. }
  148. });
  149. }
  150. </script>
  151. </body>
  152. </html>