video.min.js 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. var domainwww = $("body").attr("data-domainwww");
  2. var zburl = domainwww + "get";
  3. var puturl = domainwww + "put";
  4. if ($(".zbtwonav").length > 0) {
  5. var navSwiper = new Swiper('.zbtwonav', {
  6. freeMode: true,
  7. slidesPerView: 'auto',
  8. freeModeSticky: true,
  9. });
  10. var dhsyz = '';
  11. var gdwz = 0;
  12. $(".swiper-wrapper a").each(function(i, o) {
  13. if ($(o).hasClass("zbtwohover")) {
  14. dhsyz = i;
  15. navSlideWidth = $(this).css('width')
  16. }
  17. });
  18. if (dhsyz < 6) {
  19. navSwiper.setTranslate(0)
  20. } else {
  21. gdwz = (parseInt(navSlideWidth) / 2) * (dhsyz + 1);
  22. navSwiper.setTranslate(-gdwz)
  23. }
  24. };
  25. if ($(".zb_plzx").length > 0) {
  26. $(".zxpl_list").children().eq(0).show().siblings().hide();
  27. $(".zb_plzx li").eq(0).addClass("zbhover").siblings().removeClass("zbhover");
  28. $(".zb_plzx li").click(function() {
  29. $(this).addClass("zbhover").siblings().removeClass("zbhover");
  30. $(".zxpl_list").children().eq($(this).index()).show().siblings().hide()
  31. })
  32. };
  33. if ($(".lxxhlist").length > 0) {
  34. $(".lxxhlist").click(function() {
  35. $(".lxxinhaolb").show();
  36. $(".zxpl_list").hide()
  37. });
  38. $(".offlxxhlb").click(function() {
  39. $(".lxxinhaolb").hide();
  40. $(".zxpl_list").show()
  41. })
  42. };
  43. if ($(".replylist").length > 0) {
  44. $(".comment_xg_reply").click(function() {
  45. $(".replylist").hide();
  46. $(".pinlungrlist").show()
  47. });
  48. $(".grpltitle").click(function() {
  49. $(".replylist").show();
  50. $(".pinlungrlist").hide()
  51. })
  52. };
  53. if ($(".wdplnr").length) {
  54. $('.wdplnr').bind({
  55. focus: function() {
  56. $(".yh_photo").hide();
  57. $(".fabuplbtn").show()
  58. },
  59. blur: function() {},
  60. })
  61. };
  62. $(".fabuplbtn").click(function() {
  63. $(".tskuan_black").show();
  64. $(".tskuan_black p").html("发表成功");
  65. setTimeout(function() {
  66. $(".tskuan_black").hide()
  67. }, 1500)
  68. });
  69. $(".pl_nrong").on("click", ".pl_zan", function() {
  70. var b = $(this).parents(".comment_xg").find(".comment_replynum .huifupl").attr("data-id");
  71. var c = this;
  72. $.ajax({
  73. url: puturl,
  74. dataType: "json",
  75. async: true,
  76. data: {
  77. act: 5,
  78. id: b,
  79. from: 1,
  80. },
  81. type: "POST",
  82. success: function(r) {
  83. if (r.status == 1) {
  84. var a = $(c).find("cite").html();
  85. $(c).find("cite").html(parseInt(a) + 1)
  86. } else {
  87. $(".tskuan_black p").html(r.message);
  88. $(".tskuan_black").show();
  89. setTimeout(function() {
  90. $(".tskuan_black").hide()
  91. }, 2000)
  92. }
  93. },
  94. error: function(r) {},
  95. })
  96. });
  97. $(".pl_nrong").on("click", ".pl_cai", function() {
  98. var b = $(this).parents(".comment_xg").find(".comment_replynum .huifupl").attr("data-id");
  99. var c = this;
  100. $.ajax({
  101. url: puturl,
  102. dataType: "json",
  103. async: true,
  104. data: {
  105. act: 5,
  106. id: b,
  107. from: 2,
  108. },
  109. type: "POST",
  110. success: function(r) {
  111. if (r.status == 1) {
  112. var a = $(c).find("cite").html();
  113. $(c).find("cite").html(parseInt(a) + 1)
  114. } else {
  115. $(".tskuan_black p").html(r.message);
  116. $(".tskuan_black").show();
  117. setTimeout(function() {
  118. $(".tskuan_black").hide()
  119. }, 2000)
  120. }
  121. },
  122. error: function(r) {},
  123. })
  124. });
  125. $(".pl_nrong").on("click", ".jubaopl", function() {
  126. var c = $(this).parents(".comment_block").find(".comment_xg .huifupl").attr("data-id");
  127. $(".report_block").addClass("jubao_active");
  128. if ($(".mask").length > 0) {
  129. $(".mask").addClass("mask_active")
  130. } else {
  131. $("body").append('<div class="mask"></div>');
  132. $(".mask").addClass("mask_active")
  133. };
  134. $(".report_block").attr("data-id", c);
  135. $.ajax({
  136. url: zburl,
  137. dataType: "json",
  138. async: true,
  139. data: {
  140. act: 51,
  141. },
  142. type: "POST",
  143. success: function(r) {
  144. var b = r.data;
  145. if (r.data.length > 0) {
  146. $(".report_item").html('');
  147. $.each(b, function(i, v) {
  148. var a = "<li data-id='" + v.id + "'><span></span>" + v.option + "</li>";
  149. $(".report_item").append(a)
  150. })
  151. }
  152. },
  153. error: function(r) {},
  154. })
  155. });
  156. $(".offjubao").click(function() {
  157. $(".report_block").removeClass("jubao_active");
  158. setTimeout(function() {
  159. $(".mask_active").removeClass("mask_active");
  160. $(".mask").remove()
  161. }, 300)
  162. });
  163. $(".report_item").on("click", "li", function() {
  164. if ($(this).is('.report_item_select')) {
  165. $(this).removeClass("report_item_select")
  166. } else {
  167. $(this).addClass("report_item_select").siblings().removeClass("report_item_select")
  168. }
  169. });
  170. $(".report_btn_queding").click(function() {
  171. var a = $(".report_item").find(".report_item_select").attr("data-id");
  172. var b = $(".report_block").attr("data-id");
  173. var c = '';
  174. if (a == undefined) {
  175. c = ''
  176. } else {
  177. c = a
  178. }; if (c == '') {
  179. $(".tskuan_black").show();
  180. $(".tskuan_black p").html("举报内容不能为空");
  181. setTimeout(function() {
  182. $(".tskuan_black").hide()
  183. }, 2000)
  184. } else {
  185. $.ajax({
  186. url: puturl,
  187. dataType: "json",
  188. async: true,
  189. data: {
  190. act: 6,
  191. id: b,
  192. reportid: c,
  193. },
  194. type: "POST",
  195. success: function(r) {
  196. $(".report_block").removeClass("jubao_active");
  197. setTimeout(function() {
  198. $(".mask_active").removeClass("mask_active");
  199. $(".mask").remove()
  200. }, 300);
  201. $(".report_block").attr("data-id", '');
  202. $(".tskuan_black p").html(r.message);
  203. $(".tskuan_black").show();
  204. setTimeout(function() {
  205. $(".tskuan_black").hide()
  206. }, 1000)
  207. },
  208. error: function(r) {},
  209. })
  210. }
  211. });