article.min.js 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209
  1. var domainwww = $("body").attr("data-domainwww");
  2. var domainstatic = $("body").attr("data-domainstatic");
  3. var puturl = domainwww + "put";
  4. var geturl = domainwww + "get";
  5. if ($(".zbtwonav").length > 0) {
  6. var navSwiper = new Swiper('.zbtwonav', {
  7. freeMode: true,
  8. slidesPerView: 'auto',
  9. freeModeSticky: true,
  10. });
  11. var dhsyz = '';
  12. var gdwz = 0;
  13. $(".swiper-wrapper a").each(function(i, o) {
  14. if ($(o).hasClass("zbtwohover")) {
  15. dhsyz = i;
  16. navSlideWidth = $(this).css('width')
  17. }
  18. });
  19. if (dhsyz < 6) {
  20. navSwiper.setTranslate(0)
  21. } else {
  22. gdwz = (parseInt(navSlideWidth) / 2) * (dhsyz + 1);
  23. navSwiper.setTranslate(-gdwz)
  24. }
  25. };
  26. if ($(".zcplnum").length > 0) {
  27. $(".zcplnum").click(function() {
  28. document.getElementById("plmaodian").scrollIntoView()
  29. })
  30. };
  31. if ($(".zhankaiall").length > 0) {
  32. $(".zhankaiall").click(function() {
  33. $(".zc_nrong").removeAttr("style");
  34. $(".yczhezhao").hide();
  35. $(".zhankaiall").hide()
  36. })
  37. };
  38. if ($(".news_shouc").length) {
  39. $(".news_shouc").click(function() {
  40. var a = this;
  41. var b = $(this).attr("data-scid");
  42. var c = $(this).attr("data-login");
  43. if (c == 0) {
  44. $(".tskuan_black p").html("请先登录后再收藏");
  45. $(".tskuan_black").show();
  46. setTimeout(function() {
  47. $(".tskuan_black").hide();
  48. window.location.href = domainwww + "login"
  49. }, 2000)
  50. } else {
  51. var d = $(this).find("span").html();
  52. if (d == "收") {
  53. $.ajax({
  54. url: puturl,
  55. dataType: "json",
  56. async: true,
  57. data: {
  58. act: 2,
  59. id: b
  60. },
  61. type: "POST",
  62. success: function(r) {
  63. if (r.status == 1) {
  64. $(a).find("i").addClass("zxxqsc").html("&#xe6b6;");
  65. $(a).find("span").html("已");
  66. $(a).attr("data-isFav", r.data);
  67. $(".tskuan_black p").html(r.message);
  68. $(".tskuan_black").show();
  69. setTimeout(function() {
  70. $(".tskuan_black").hide()
  71. }, 2000)
  72. };
  73. if (r.status == 0) {
  74. $(".tskuan_black p").html(r.message);
  75. $(".tskuan_black").show();
  76. setTimeout(function() {
  77. $(".tskuan_black").hide()
  78. }, 2000)
  79. }
  80. },
  81. error: function(e) {},
  82. })
  83. } else {
  84. var f = $(this).attr("data-isFav");
  85. $.ajax({
  86. url: puturl,
  87. dataType: "json",
  88. async: true,
  89. data: {
  90. act: 3,
  91. id: f,
  92. },
  93. type: "POST",
  94. success: function(r) {
  95. if (r.status == 1) {
  96. $(a).find("i").removeClass("zxxqsc").html("&#xe6b3;");
  97. $(a).find("span").html("收");
  98. $(a).attr("data-isFav", '0');
  99. $(".tskuan_black p").html(r.message);
  100. $(".tskuan_black").show();
  101. setTimeout(function() {
  102. $(".tskuan_black").hide()
  103. }, 1000)
  104. };
  105. if (r.status == 0) {
  106. $(".tskuan_black p").html(r.message);
  107. $(".tskuan_black").show();
  108. setTimeout(function() {
  109. $(".tskuan_black").hide()
  110. }, 1000)
  111. }
  112. },
  113. error: function(e) {},
  114. })
  115. }
  116. }
  117. })
  118. };
  119. if ($(".pl_nrong").length > 0) {
  120. chushipllist()
  121. };
  122. function chushipllist() {
  123. var e = $(".fabiaopl").attr("data-id");
  124. $.ajax({
  125. url: geturl,
  126. dataType: "json",
  127. async: true,
  128. type: "POST",
  129. data: {
  130. act: 102,
  131. id: e,
  132. cid: 5
  133. },
  134. success: function(r) {
  135. var b = r.data.paperList;
  136. var c = r.usersArr;
  137. var d = r.huifuArr;
  138. if (r.status == 1) {
  139. if (r.data.rowSum > 0) {
  140. $(".pl_num").removeClass("pl_numno")
  141. };
  142. $(".pl_num cite").html(r.data.rowSum);
  143. $(".zcplnum cite").html(r.data.rowSum);
  144. if (r.data.rowSum > 10) {
  145. $(".jzmorepl").show()
  146. } else {
  147. $(".jzmorepl").hide()
  148. }; if (b != undefined) {
  149. if (b.length > 0) {
  150. $(".pl_nrong .replylist").html('');
  151. $.each(b, function(i, v) {
  152. var a = '';
  153. a += " <li><div class='common_avatar'>";
  154. a += "<img src='" + r.usersArr[v.uid].picurl + "'>";
  155. a += " </div><div class='replylist_block'><div class='comment_user'>";
  156. a += " <p class='fl'><span class='comment_username'>" + r.usersArr[v.uid].nickname + "</span>";
  157. a += "<span class='comment_time'>" + v.inserttime.substring(5, 16) + "</span></p>";
  158. a += "<p class='fr jubaopl'><i class='iconfont'>&#xe6ae;</i></p></div>";
  159. if (r.usersArr[v.uid].status == 1) {
  160. a += "<div class='comment_content'>" + v.content + "</div>"
  161. } else {
  162. a += "<div class='comment_content'>该用户已经被屏蔽</div>"
  163. };
  164. a += " <div id='hfdq_" + v.id + "'></div>";
  165. a += "<div class='comment_xg clearfix'><div class='fl comment_replynum'>";
  166. if (d[v.id] == undefined) {
  167. a += "<span class='comment_xg_reply huifupl' data-id='" + v.id + "' data-toid='" + v.toid + "'><cite>回复</cite></span>"
  168. } else {
  169. a += "<span class='comment_xg_reply dqhflist' data-id='" + v.id + "' data-toid='" + v.toid + "'><cite>" + d[v.id] + "条回复></cite></span>"
  170. };
  171. a += "</div><div class='fr comment_state'>";
  172. a += "<p class='pl_zan' title='赞'><i class='iconfont'>&#xe699;</i><cite>" + v.support + "</cite></p>";
  173. a += "<p class='pl_cai' title='踩'><i class='iconfont'>&#xe69b;</i><cite>" + v.despise + "</cite></p>";
  174. a += "</div></div></div></li>";
  175. $(".pl_nrong .replylist").append(a)
  176. })
  177. } else {
  178. $(".pl_nrong .replylist").html("<p class='nodata3'><span><img src='" + domainstatic + "wap/img/nodata5.png'></span><cite>暂无评论,点击抢沙发</cite></p>");
  179. $(".pl_num cite").html("0");
  180. $(".pl_num").addClass("pl_numno");
  181. $(".zcplnum cite").html("0");
  182. $(".jzmorepl").hide()
  183. }
  184. };
  185. $(".pl_nrong .replylist").append("<p class='jzmorepl' data-page='1' data-more='0'>加载更多</p>")
  186. }
  187. },
  188. complete: function() {},
  189. error: function(r) {},
  190. })
  191. };
  192. setTimeout(function() {
  193. jzmoreplxs($(".pl_num cite").html())
  194. }, 1500);
  195. setInterval("chushipllist()", 300000);
  196. function jzmoreplxs(a) {
  197. if (parseInt(a) > 10) {
  198. $(".jzmorepl").show()
  199. } else {
  200. $(".jzmorepl").hide()
  201. }
  202. };
  203. if ($(".wdplnr").length) {
  204. $('.wdplnr').bind({
  205. focus: function() {
  206. var a = $(".fabiaopl_hf").css("display");
  207. if (a != "block") {
  208. $(".yh_photo").hide();
  209. $(".fabiaopl").show();
  210. $(".djfbpl").removeClass("addzan");
  211. $(".news_shouc").hide()
  212. }
  213. },
  214. blur: function() {},
  215. })
  216. };
  217. $('.wdplnr').keyup(function() {
  218. var a = $(this).val();
  219. if ($(".fabiaopl").is(":hidden") == false) {
  220. if (a.length > 0) {
  221. $('.fabiaopl').css("color", "#e60640")
  222. };
  223. if (a.length == 0) {
  224. $('.fabiaopl').css("color", "#999")
  225. }
  226. };
  227. if ($(".fabiaopl_hf").is(":hidden") == false) {
  228. if ((a.length - hfpl_mcl) > 2) {
  229. $('.fabiaopl_hf').css("color", "#e60640")
  230. };
  231. if ((a.length - hfpl_mcl) == 0) {
  232. $('.fabiaopl_hf').css("color", "#999")
  233. }
  234. }
  235. });
  236. $('.wdplnr_gr').keyup(function() {
  237. var a = $(this).val();
  238. if ($(".fabiaopl_gr").is(":hidden") == false) {
  239. if (a.length > 0) {
  240. $('.fabiaopl_gr').css("color", "#e60640")
  241. };
  242. if (a.length == 0) {
  243. $('.fabiaopl_gr').css("color", "#999")
  244. }
  245. };
  246. if ($(".fabiaopl_hf_gr").is(":hidden") == false) {
  247. if ((a.length - hfpl_mcl_gr) > 2) {
  248. $('.fabiaopl_hf_gr').css("color", "#e60640")
  249. };
  250. if ((a.length - hfpl_mcl_gr) == 0) {
  251. $('.fabiaopl_hf_gr').css("color", "#999")
  252. }
  253. }
  254. });
  255. var plzbjs = true;
  256. $(".pl_nrong").on("click", ".fabiaopl", function() {
  257. if (plzbjs) {
  258. plzbjs = false;
  259. var b = $(".zbplnr").val();
  260. var c = $(".fabiaopl").attr("data-id");
  261. var d = $(".fabiaopl").attr("data-login");
  262. var e = $(".fabiaopl").attr("data-h");
  263. if (d == 0) {
  264. $(".tskuan_black p").html("请先登录后再发表评论");
  265. $(".tskuan_black").show();
  266. setTimeout(function() {
  267. window.location.href = domainwww + "login"
  268. }, 2000)
  269. } else if (e == 1) {
  270. $(".tskuan_black p").html("您已被加入黑名单不能发表评论,请先申诉找回");
  271. $(".tskuan_black").show();
  272. setTimeout(function() {
  273. window.location.href = domainwww + "appeal"
  274. }, 3000)
  275. } else {
  276. var f = $(".zbplnr").val();
  277. var g = new Date;
  278. var h = dateFormat(g);
  279. var i = $(".yh_photo img").attr("src");
  280. var j = $(".my_mizi").html();
  281. var k = $(".pl_num cite").html();
  282. var l = $(".fabiaopl").attr("data-sign");
  283. if (f == '') {
  284. $(".tskuan_black p").html("评论内容不能为空");
  285. $(".tskuan_black").show();
  286. setTimeout(function() {
  287. $(".tskuan_black p").html('');
  288. $(".tskuan_black").hide()
  289. }, 2000)
  290. } else {
  291. $.ajax({
  292. url: puturl,
  293. dataType: "json",
  294. async: true,
  295. data: {
  296. act: 4,
  297. from: 5,
  298. id: c,
  299. msg: f,
  300. sign: l,
  301. },
  302. type: "POST",
  303. success: function(r) {
  304. if (r.status == 1) {
  305. $(".pl_num cite").html(parseInt(k) + 1);
  306. $(".zcplnum cite").html(parseInt(k) + 1);
  307. $(".pl_num").removeClass("pl_numno");
  308. jzmoreplxs($(".pl_num cite").html());
  309. var a = '';
  310. a += " <li><div class='common_avatar'>";
  311. a += "<img src='" + i + "'>";
  312. a += " </div><div class='replylist_block'><div class='comment_user'>";
  313. a += " <p class='fl'><span class='comment_username'>" + j + "</span>";
  314. a += "<span class='comment_time'>" + h + "</span></p>";
  315. a += "<p class='fr jubaopl'><i class='iconfont'>&#xe6ae;</i></p></div>";
  316. a += "<div class='comment_content'>" + f + "</div>";
  317. a += " <div id='hfdq_" + r.data + "'></div>";
  318. a += "<div class='comment_xg clearfix'><div class='fl comment_replynum'>";
  319. a += "<span class='comment_xg_reply huifupl' data-id='" + r.data + "' data-toid='0'><cite>回复</cite></span>";
  320. a += "</div><div class='fr comment_state'>";
  321. a += "<p class='pl_zan' title='赞'><i class='iconfont'>&#xe699;</i><cite>0</cite></p>";
  322. a += "<p class='pl_cai' title='踩'><i class='iconfont'>&#xe69b;</i><cite></cite></p>";
  323. a += "</div></div></div></li>";
  324. if ($(".replylist .nodata3").length > 0) {
  325. $(".replylist .nodata3").remove()
  326. };
  327. $(".pl_nrong .replylist").prepend(a);
  328. $(".zbplnr").val('');
  329. $(".yh_photo").show();
  330. $(".fabiaopl").hide();
  331. $(".djfbpl").addClass("addzan");
  332. $(".news_shouc").show();
  333. $(".tskuan_black p").html(r.message);
  334. $(".tskuan_black").show();
  335. setTimeout(function() {
  336. $(".tskuan_black").hide()
  337. }, 2000);
  338. $(".pl_nrong").scrollTop(0)
  339. } else {
  340. $(".zbplnr").val('');
  341. $(".tskuan_black p").html(r.message);
  342. $(".tskuan_black").show();
  343. setTimeout(function() {
  344. $(".tskuan_black").hide()
  345. }, 2000)
  346. }
  347. },
  348. error: function(r) {},
  349. })
  350. }
  351. };
  352. setTimeout(function() {
  353. plzbjs = true
  354. }, 3000)
  355. }
  356. });
  357. var hfpl_ynr = '';
  358. var hfpl_ymc = '';
  359. var hfpl_mcl = '';
  360. $(".pl_nrong").on("click", ".huifupl", function() {
  361. var a = $(this).attr("data-id");
  362. var b = $(this).attr("data-toid");
  363. $(".zbplnr").focus();
  364. $(".fabiaopl").hide();
  365. $(".fabiaopl_hf").show().attr("data-oid", a);
  366. $(".fabiaopl_hf").attr("data-toid", b);
  367. hfpl_ynr = Trim($(this).parents(".replylist_block").find(".comment_time").html());
  368. hfpl_ymc = Trim($(this).parents(".replylist_block").find(".comment_username").html());
  369. $(".huifupl").removeClass("huifured");
  370. $(this).addClass("huifured");
  371. hfpl_mcl = parseInt(hfpl_ymc.length) + 2;
  372. $(".zbplnr").val('@' + hfpl_ymc + " ")
  373. });
  374. var hfpltime = true;
  375. $(".pl_nrong").on("click", ".fabiaopl_hf", function() {
  376. var b = '';
  377. var c = this;
  378. if (hfpltime) {
  379. hfpltime = false;
  380. var d = $(".zbplnr").val();
  381. var e = $(".fabiaopl_hf").attr("data-id");
  382. var f = $(".fabiaopl_hf").attr("data-login");
  383. var g = $(".fabiaopl_hf").attr("data-h");
  384. var h = $(".fabiaopl_hf").attr("data-oid");
  385. var i = $(".fabiaopl_hf").attr("data-toid");
  386. if (f == 0) {
  387. $(".tskuan_black p").html("请先登录后再发表评论");
  388. $(".tskuan_black").show();
  389. setTimeout(function() {
  390. window.location.href = domainwww + "login"
  391. }, 2000)
  392. } else if (g == 1) {
  393. $(".tskuan_black p").html("您已被加入黑名单不能发表评论,请先申诉找回");
  394. $(".tskuan_black").show();
  395. setTimeout(function() {
  396. window.location.href = domainwww + "appeal"
  397. }, 3000)
  398. } else {
  399. var j = $(".zbplnr").val();
  400. var k = new Date;
  401. var l = dateFormat(k);
  402. var m = $(".yh_photo img").attr("src");
  403. var n = $(".my_mizi").html();
  404. var o = $(".fabiaopl_hf").attr("data-sign");
  405. var p = j.substring(hfpl_mcl);
  406. if (p == '') {
  407. $(".tskuan_black p").html("评论内容不能为空");
  408. $(".tskuan_black").show();
  409. setTimeout(function() {
  410. $(".tskuan_black p").html('');
  411. $(".tskuan_black").hide()
  412. }, 2000)
  413. } else {
  414. if (i == 0) {
  415. b = h
  416. } else {
  417. b = i
  418. };
  419. $.ajax({
  420. url: puturl,
  421. dataType: "json",
  422. async: true,
  423. type: "POST",
  424. data: {
  425. act: 4,
  426. id: e,
  427. msg: p,
  428. from: 5,
  429. oid: h,
  430. sign: o,
  431. toid: b,
  432. },
  433. success: function(r) {
  434. if (r.status == 1) {
  435. var a = '';
  436. a += "<div class='huifuplnrzs'>";
  437. a += "<span>" + n + ":</span>" + p + "";
  438. a += "</div>";
  439. $("#hfdq_" + h).prepend(a);
  440. $(".tskuan_black p").html(r.message);
  441. $(".tskuan_black").show();
  442. setTimeout(function() {
  443. $(".tskuan_black").hide()
  444. }, 2000);
  445. $(".pl_nrong").scrollTop(0)
  446. } else {
  447. $(".zbplnr").val('');
  448. $(".pl_tanchu p").html(r.message);
  449. $(".pl_tanchu").fadeIn(300);
  450. setTimeout(function() {
  451. $(".pl_tanchu").fadeOut()
  452. }, 2000)
  453. }
  454. },
  455. complete: function() {
  456. $(".zbplnr").val('');
  457. $(".yh_photo").show();
  458. $(".fabiaopl").hide();
  459. $(".fabiaopl_hf").hide();
  460. $(".fabiaopl_hf").hide().attr("data-oid", '');
  461. $(".huifupl").removeClass("huifured");
  462. $(".djfbpl").addClass("addzan");
  463. $(".news_shouc").show()
  464. },
  465. error: function(r) {},
  466. })
  467. }
  468. };
  469. setTimeout(function() {
  470. hfpltime = true
  471. }, 3000)
  472. }
  473. });
  474. if ($(".replylist").length > 0) {
  475. $(".pl_nrong").on("click", ".dqhflist", function() {
  476. var f = $(this).parents("li").html();
  477. $(".pinlungrlist .grpl_zhu").html(f);
  478. $(".pinlungrlist .grpl_zhu").find(".comment_xg_reply").hide();
  479. $(".replylist").hide();
  480. $(".pinlungrlist").show();
  481. $(".fabianpl_gr").show();
  482. $(".fabianpl").hide();
  483. $(".zbplnr_gr").val('');
  484. $(".yh_photo_gr").show();
  485. $(".fabiaopl_gr").hide();
  486. $(".fabiaopl_hf_gr").hide();
  487. $(".fabiaopl_hf_gr").hide().attr("data-oid", '');
  488. $(".huifupl_gr").removeClass("huifured");
  489. $(".information").hide();
  490. $(".xgtuijian").hide();
  491. var g = $(this).attr("data-id");
  492. $.ajax({
  493. url: geturl,
  494. dataType: "json",
  495. async: true,
  496. data: {
  497. act: 103,
  498. id: g,
  499. },
  500. type: "POST",
  501. success: function(r) {
  502. var b = r.data.paperList;
  503. if (r.data.rowSum > 10) {
  504. $(".jzmoreplgr").show()
  505. } else {
  506. $(".jzmoreplgr").hide()
  507. };
  508. $(".grplxqnum").html(r.data.rowSum);
  509. var c = r.usersArr;
  510. var d = r.huifuArr;
  511. var e = r.arr.id;
  512. if (b.length > 0) {
  513. $(".pinlungrlist .grhuallliat").html('');
  514. $.each(b, function(i, v) {
  515. var a = '';
  516. a += "<li>";
  517. a += "<div class='common_avatar'>";
  518. a += "<img src='" + r.usersArr[v.uid].picurl + "'>";
  519. a += "</div>";
  520. a += "<div class='replylist_block'>";
  521. a += "<div class='comment_user'>";
  522. a += "<p class='fl'><span class='comment_username'>" + r.usersArr[v.uid].nickname + "</span><span class='comment_time'>" + v.inserttime.substring(5, 16) + "</span></p>";
  523. a += "<p class='fr jubaopl'><i class='iconfont'>&#xe6ae;</i></p>";
  524. a += "</div>";
  525. a += "<div class='comment_content'>";
  526. if (r.usersArr[v.uid].status == 1) {
  527. if (v.oid == e) {
  528. a += "<span>" + v.content + "</span>"
  529. } else {
  530. if (r.huifuArr[v.oid] != undefined) {
  531. a += "<span>" + v.content + "</span>" + "<cite>//@" + c[r.huifuArr[v.oid].uid].nickname + ": </cite>" + r.huifuArr[v.oid].content
  532. }
  533. }
  534. } else {
  535. a += "<span>该用户已经被屏蔽</span>"
  536. };
  537. a += "</div>";
  538. a += "<div class='comment_xg clearfix'>";
  539. a += "<div class='fl comment_replynum'>";
  540. a += "<span class='comment_xg_reply huifupl_gr' data-id='" + v.id + "' data-toid='" + v.toid + "'><cite>回复</cite></span>";
  541. a += "</div>";
  542. a += "<div class='fr comment_state'>";
  543. a += "<p class='pl_zan' title='赞'><i class='iconfont'>&#xe699;</i><cite>" + v.support + "</cite></p>";
  544. a += "<p class='pl_cai' title='踩'><i class='iconfont'>&#xe69b;</i><cite>" + v.despise + "</cite></p>";
  545. a += "</div></div></div></li>";
  546. $(".pinlungrlist .grhuallliat").append(a)
  547. })
  548. }
  549. },
  550. error: function(r) {},
  551. })
  552. });
  553. $(".grpltitle").click(function() {
  554. $(".replylist").show();
  555. $(".pinlungrlist").hide();
  556. $(".fabianpl_gr").hide();
  557. $(".fabianpl").show();
  558. $(".jzmoreplgr").html("加载更多");
  559. $(".jzmoreplgr").attr("data-more", "0");
  560. $(".jzmoreplgr").attr("data-page", "1");
  561. var a = $(".grplxqnum").html();
  562. var b = $(".pinlungrlist .dqhflist").attr("data-id");
  563. $("#hfdq_" + b).parents("li").find(".comment_xg_reply cite").html(a + "条回复>");
  564. $(".information").show();
  565. $(".xgtuijian").show();
  566. $(".zbplnr").val('');
  567. $(".yh_photo").show();
  568. $(".fabiaopl").hide();
  569. $(".djfbpl").addClass("addzan");
  570. $(".news_shouc").show();
  571. $(".fabiaopl_hf").hide();
  572. $(".fabiaopl_hf").hide().attr("data-oid", '');
  573. $(".huifupl").removeClass("huifured")
  574. })
  575. };
  576. if ($(".wdplnr_gr").length) {
  577. $('.wdplnr_gr').bind({
  578. focus: function() {
  579. var a = $(".fabiaopl_hf_gr").css("display");
  580. if (a != "block") {
  581. $(".yh_photo_gr").hide();
  582. $(".fabiaopl_gr").show()
  583. }
  584. },
  585. blur: function() {},
  586. })
  587. };
  588. var plzbjs_gr = true;
  589. $(".pl_nrong").on("click", ".fabiaopl_gr", function() {
  590. var c = '';
  591. if (plzbjs_gr) {
  592. plzbjs_gr = false;
  593. var d = $(".fabiaopl_gr").attr("data-id");
  594. var e = $(".fabiaopl_gr").attr("data-login");
  595. var f = $(".fabiaopl_gr").attr("data-h");
  596. if (e == 0) {
  597. $(".tskuan_black p").html("请先登录后再发表评论");
  598. $(".tskuan_black").show();
  599. setTimeout(function() {
  600. window.location.href = domainwww + "login"
  601. }, 2000)
  602. } else if (f == 1) {
  603. $(".tskuan_black p").html("您已被加入黑名单不能发表评论,请先申诉找回");
  604. $(".tskuan_black").show();
  605. setTimeout(function() {
  606. window.location.href = domainwww + "appeal"
  607. }, 3000)
  608. } else {
  609. var g = $(".zbplnr_gr").val();
  610. var h = new Date;
  611. var i = dateFormat(h);
  612. var j = $(".yh_photo_gr img").attr("src");
  613. var k = $(".my_mizi_gr").html();
  614. var l = $(".grplxqnum").html();
  615. var m = $(".fabiaopl_gr").attr("data-sign");
  616. if (g == '') {
  617. $(".tskuan_black p").html("评论内容不能为空");
  618. $(".tskuan_black").show();
  619. setTimeout(function() {
  620. $(".tskuan_black p").html('');
  621. $(".tskuan_black").hide()
  622. }, 2000)
  623. } else {
  624. var n = $(".grpl_zhu .comment_xg_reply").attr("data-toid");
  625. var o = $(".grpl_zhu .comment_xg_reply").attr("data-id");
  626. if (n == 0) {
  627. c = o
  628. } else {
  629. c = n
  630. };
  631. $.ajax({
  632. url: puturl,
  633. dataType: "json",
  634. async: true,
  635. type: "POST",
  636. data: {
  637. act: 4,
  638. id: d,
  639. msg: g,
  640. from: 5,
  641. oid: o,
  642. sign: m,
  643. toid: c,
  644. },
  645. success: function(r) {
  646. if (r.status == 1) {
  647. var a = parseInt(l) + 1;
  648. $(".grplxqnum").html(a);
  649. if (a > 10) {
  650. $(".jzmoreplgr").show()
  651. } else {
  652. $(".jzmoreplgr").hide()
  653. }
  654. var b = '';
  655. b += "<li>";
  656. b += "<div class='common_avatar'>";
  657. b += "<img src='" + j + "'>";
  658. b += "</div>";
  659. b += "<div class='replylist_block'>";
  660. b += "<div class='comment_user'>";
  661. b += "<p class='fl'><span class='comment_username'>" + k + "</span><span class='comment_time'>" + i + "</span></p>";
  662. b += "<p class='fr jubaopl'><i class='iconfont'></i></p>";
  663. b += "</div>";
  664. b += "<div class='comment_content'>";
  665. b += "<span>" + g + "</span>";
  666. b += "</div>";
  667. b += "<div class='comment_xg clearfix'>";
  668. b += "<div class='fl comment_replynum'>";
  669. b += "<span class='comment_xg_reply huifupl_gr' data-id='" + r.data + "' data-toid='" + c + "'><cite>回复</cite></span>";
  670. b += "</div>";
  671. b += "<div class='fr comment_state'>";
  672. b += "<p class='pl_zan' title='赞'><i class='iconfont'></i><cite>0</cite></p>";
  673. b += "<p class='pl_cai' title='踩'><i class='iconfont'></i><cite>0</cite></p>";
  674. b += "</div></div></div></li>";
  675. $(".grhuallliat").prepend(b);
  676. $(".tskuan_black p").html(r.message);
  677. $(".tskuan_black").show();
  678. setTimeout(function() {
  679. $(".tskuan_black").hide()
  680. }, 2000);
  681. $(".pl_nrong").scrollTop(0)
  682. } else {
  683. $(".zbplnr_gr").val('');
  684. $(".tskuan_black p").html(r.message);
  685. $(".tskuan_black").show();
  686. setTimeout(function() {
  687. $(".tskuan_black").hide()
  688. }, 2000)
  689. }
  690. },
  691. complete: function() {
  692. $(".zbplnr_gr").val('');
  693. $(".yh_photo_gr").show();
  694. $(".fabiaopl_gr").hide();
  695. $(".fabiaopl_hf_gr").hide();
  696. $(".fabiaopl_hf_gr").hide().attr("data-oid", '');
  697. $(".huifupl_gr").removeClass("huifured")
  698. },
  699. error: function(r) {},
  700. })
  701. }
  702. };
  703. setTimeout(function() {
  704. plzbjs_gr = true
  705. }, 3000)
  706. }
  707. });
  708. var hfpl_ynr_gr = '';
  709. var hfpl_ymc_gr = '';
  710. var hfpl_mcl_gr = '';
  711. $(".pl_nrong").on("click", ".huifupl_gr", function() {
  712. var a = $(this).attr("data-id");
  713. var b = $(this).attr("data-toid");
  714. $(".zbplnr_gr").focus();
  715. $(".fabiaopl_gr").hide();
  716. $(".fabiaopl_hf_gr").show().attr("data-oid", a);
  717. $(".fabiaopl_hf_gr").attr("data-toid", b);
  718. hfpl_ynr_gr = Trim($(this).parents(".replylist_block").find(".comment_content span").html());
  719. hfpl_ymc_gr = Trim($(this).parents(".replylist_block").find(".comment_username").html());
  720. $(".huifupl_gr").removeClass("huifured");
  721. $(this).addClass("huifured");
  722. hfpl_mcl_gr = parseInt(hfpl_ymc_gr.length) + 2;
  723. $(".zbplnr_gr").val('@' + hfpl_ymc_gr + " ")
  724. });
  725. var hfpltime_gr = true;
  726. $(".pl_nrong").on("click", ".fabiaopl_hf_gr", function() {
  727. var c = '';
  728. var d = this;
  729. if (hfpltime_gr) {
  730. hfpltime_gr = false;
  731. var e = $(".zbplnr_gr").val();
  732. var f = $(".fabiaopl_hf_gr").attr("data-id");
  733. var g = $(".fabiaopl_hf_gr").attr("data-login");
  734. var h = $(".fabiaopl_hf_gr").attr("data-h");
  735. var i = $(".fabiaopl_hf_gr").attr("data-oid");
  736. var j = $(".fabiaopl_hf_gr").attr("data-toid");
  737. if (g == 0) {
  738. $(".tskuan_black p").html("请先登录后再发表评论");
  739. $(".tskuan_black").show();
  740. setTimeout(function() {
  741. window.location.href = domainwww + "login_gr"
  742. }, 2000)
  743. } else if (h == 1) {
  744. $(".tskuan_black p").html("您已被加入黑名单不能发表评论,请先申诉找回");
  745. $(".tskuan_black").show();
  746. setTimeout(function() {
  747. window.location.href = domainwww + "appeal"
  748. }, 3000)
  749. } else {
  750. var k = $(".zbplnr_gr").val();
  751. var l = new Date;
  752. var m = dateFormat(l);
  753. var n = $(".yh_photo_gr img").attr("src");
  754. var o = $(".my_mizi_gr").html();
  755. var p = $(".grplxqnum").html();
  756. var q = $(".fabiaopl_hf_gr").attr("data-sign");
  757. var s = k.substring(hfpl_mcl_gr);
  758. if (s == '') {
  759. $(".tskuan_black p").html("评论内容不能为空");
  760. $(".tskuan_black").show();
  761. setTimeout(function() {
  762. $(".tskuan_black p").html('');
  763. $(".tskuan_black").hide()
  764. }, 2000)
  765. } else {
  766. if (j == 0) {
  767. c = i
  768. } else {
  769. c = j
  770. };
  771. $.ajax({
  772. url: puturl,
  773. dataType: "json",
  774. async: true,
  775. type: "POST",
  776. data: {
  777. act: 4,
  778. id: f,
  779. msg: s,
  780. from: 5,
  781. oid: i,
  782. sign: q,
  783. toid: c,
  784. },
  785. success: function(r) {
  786. if (r.status == 1) {
  787. var a = parseInt(p) + 1;
  788. $(".grplxqnum").html(a);
  789. if (a > 10) {
  790. $(".jzmoreplgr").show()
  791. } else {
  792. $(".jzmoreplgr").hide()
  793. };
  794. var b = '';
  795. b += "<li>";
  796. b += "<div class='common_avatar'>";
  797. b += "<img src='" + n + "'>";
  798. b += "</div>";
  799. b += "<div class='replylist_block'>";
  800. b += "<div class='comment_user'>";
  801. b += "<p class='fl'><span class='comment_username'>" + o + "</span><span class='comment_time'>" + m + "</span></p>";
  802. b += "<p class='fr jubaopl'><i class='iconfont'></i></p>";
  803. b += "</div>";
  804. b += "<div class='comment_content'>";
  805. b += "<span>" + s + "</span>" + "<cite>//@" + hfpl_ymc_gr + ": </cite>" + hfpl_ynr_gr;
  806. b += "</div>";
  807. b += "<div class='comment_xg clearfix'>";
  808. b += "<div class='fl comment_replynum'>";
  809. b += "<span class='comment_xg_reply huifupl_gr' data-id='" + r.data + "' data-toid='" + c + "'><cite>回复</cite></span>";
  810. b += "</div>";
  811. b += "<div class='fr comment_state'>";
  812. b += "<p class='pl_zan' title='赞'><i class='iconfont'></i><cite>0</cite></p>";
  813. b += "<p class='pl_cai' title='踩'><i class='iconfont'></i><cite>0</cite></p>";
  814. b += "</div></div></div></li>";
  815. $(".grhuallliat").prepend(b);
  816. $(".tskuan_black p").html(r.message);
  817. $(".tskuan_black").show();
  818. setTimeout(function() {
  819. $(".tskuan_black").hide()
  820. }, 2000);
  821. $(".pl_nrong").scrollTop(0)
  822. } else {
  823. $(".zbplnr_gr").val('');
  824. $(".tskuan_black p").html(r.message);
  825. $(".tskuan_black").show();
  826. setTimeout(function() {
  827. $(".tskuan_black").hide()
  828. }, 2000)
  829. }
  830. },
  831. complete: function() {
  832. $(".zbplnr_gr").val('');
  833. $(".yh_photo_gr").show();
  834. $(".fabiaopl_gr").hide();
  835. $(".fabiaopl_hf_gr").hide();
  836. $(".fabiaopl_hf_gr").hide().attr("data-oid", '');
  837. $(".huifupl_gr").removeClass("huifured")
  838. },
  839. error: function(r) {},
  840. })
  841. }
  842. };
  843. setTimeout(function() {
  844. hfpltime_gr = true
  845. }, 3000)
  846. }
  847. });
  848. $(".pl_nrong").on("click", ".jzmorepl", function() {
  849. var f = $(".jzmorepl").attr("data-page");
  850. var g = parseInt(f) + 1;
  851. $(".jzmorepl").attr("data-page", g);
  852. var h = $(this).attr("data-more");
  853. if (h == 0) {
  854. var j = $(".fabiaopl").attr("data-id");
  855. $.ajax({
  856. url: geturl,
  857. dataType: "json",
  858. async: true,
  859. type: "POST",
  860. data: {
  861. act: 102,
  862. id: j,
  863. cid: 5,
  864. page: g,
  865. },
  866. success: function(r) {
  867. var c = r.data.paperList;
  868. var d = r.usersArr;
  869. var e = r.huifuArr;
  870. if (r.status == 1) {
  871. if (c.length > 0) {
  872. $.each(c, function(i, v) {
  873. var a = '';
  874. a += " <li><div class='common_avatar'>";
  875. a += "<img src='" + r.usersArr[v.uid].picurl + "'>";
  876. a += " </div><div class='replylist_block'><div class='comment_user'>";
  877. a += " <p class='fl'><span class='comment_username'>" + r.usersArr[v.uid].nickname + "</span>";
  878. a += "<span class='comment_time'>" + v.inserttime.substring(5, 15) + "</span></p>";
  879. a += "<p class='fr jubaopl'><i class='iconfont'>&#xe6ae;</i></p></div>";
  880. if (r.usersArr[v.uid].status == 1) {
  881. a += "<div class='comment_content'>" + v.content + "</div>"
  882. } else {
  883. a += "<div class='comment_content'>该用户已经被屏蔽</div>"
  884. };
  885. a += " <div id='hfdq_" + v.id + "'></div>";
  886. a += "<div class='comment_xg clearfix'><div class='fl comment_replynum'>";
  887. if (e[v.id] == undefined) {
  888. a += "<span class='comment_xg_reply huifupl' data-id='" + v.id + "' data-toid='" + v.toid + "'><cite>回复</cite></span>"
  889. } else {
  890. a += "<span class='comment_xg_reply dqhflist' data-id='" + v.id + "' data-toid='" + v.toid + "'><cite>" + e[v.id] + "条回复></cite></span>"
  891. }
  892. a += "</div><div class='fr comment_state'>";
  893. a += "<p class='pl_zan' title='赞'><i class='iconfont'>&#xe699;</i><cite>" + v.support + "</cite></p>";
  894. a += "<p class='pl_cai' title='踩'><i class='iconfont'>&#xe69b;</i><cite>" + v.despise + "</cite></p>";
  895. a += "</div></div></div></li>";
  896. $(".jzmorepl").before(a);
  897. var b = $('.pl_nrong').prop("scrollHeight");
  898. $('.pl_nrong').scrollTop(b, 200)
  899. })
  900. } else {
  901. $(".jzmorepl").html("没有更多评论");
  902. $(".jzmorepl").attr("data-more", "1")
  903. }
  904. }
  905. },
  906. complete: function() {},
  907. error: function(r) {},
  908. })
  909. }
  910. });
  911. $(".pl_nrong").on("click", ".jzmoreplgr", function() {
  912. var f = $(".jzmoreplgr").attr("data-page");
  913. var g = parseInt(f) + 1;
  914. $(".jzmoreplgr").attr("data-page", g);
  915. var h = $(this).attr("data-more");
  916. if (h == 0) {
  917. var j = $(".pinlungrlist .dqhflist").attr("data-id");
  918. $.ajax({
  919. url: geturl,
  920. dataType: "json",
  921. async: true,
  922. data: {
  923. act: 103,
  924. id: j,
  925. page: g,
  926. },
  927. success: function(r) {
  928. var b = r.data.paperList;
  929. var c = r.usersArr;
  930. var d = r.huifuArr;
  931. if (r.status == 1) {
  932. if (b.length > 0) {
  933. var e = r.arr.id;
  934. $.each(b, function(i, v) {
  935. var a = '';
  936. a += "<li>";
  937. a += "<div class='common_avatar'>";
  938. a += "<img src='" + r.usersArr[v.uid].picurl + "'>";
  939. a += "</div>";
  940. a += "<div class='replylist_block'>";
  941. a += "<div class='comment_user'>";
  942. a += "<p class='fl'><span class='comment_username'>" + r.usersArr[v.uid].nickname + "</span><span class='comment_time'>" + v.inserttime.substring(5, 16) + "</span></p>";
  943. a += "<p class='fr jubaopl'><i class='iconfont'>&#xe6ae;</i></p>";
  944. a += "</div>";
  945. a += "<div class='comment_content'>";
  946. if (r.usersArr[v.uid].status == 1) {
  947. if (v.oid == e) {
  948. a += "<span>" + v.content + "</span>"
  949. } else {
  950. if (r.huifuArr[v.oid] != undefined) {
  951. a += "<span>" + v.content + "</span>" + "<cite>//@" + c[r.huifuArr[v.oid].uid].nickname + ": </cite>" + r.huifuArr[v.oid].content
  952. }
  953. }
  954. } else {
  955. a += "<span>该用户已经被屏蔽</span>"
  956. };
  957. a += "</div>";
  958. a += "<div class='comment_xg clearfix'>";
  959. a += "<div class='fl comment_replynum'>";
  960. a += "<span class='comment_xg_reply huifupl_gr' data-id='" + v.id + "' data-toid='" + v.toid + "'><cite>回复</cite></span>";
  961. a += "</div>";
  962. a += "<div class='fr comment_state'>";
  963. a += "<p class='pl_zan' title='赞'><i class='iconfont'>&#xe699;</i><cite>" + v.support + "</cite></p>";
  964. a += "<p class='pl_cai' title='踩'><i class='iconfont'>&#xe69b;</i><cite>" + v.despise + "</cite></p>";
  965. a += "</div></div></div></li>";
  966. $(".pinlungrlist .grhuallliat").append(a)
  967. })
  968. } else {
  969. $(".jzmoreplgr").html("没有更多评论");
  970. $(".jzmoreplgr").attr("data-more", "1")
  971. }
  972. }
  973. },
  974. complete: function() {},
  975. error: function(r) {},
  976. })
  977. }
  978. });
  979. function Trim(a) {
  980. return a.replace(/(^\s*)|(\s*$)/g, "")
  981. };
  982. function dateFormat(d) {
  983. var a = d.getFullYear();
  984. var b = d.getMonth() + 1;
  985. var c = d.getDate();
  986. var e = d.getHours();
  987. var f = d.getMinutes();
  988. datetime = (b > 9 ? (b + "") : ("0" + b)) + '-' + (c > 9 ? (c + "") : ("0" + c)) + ' ' + (e > 9 ? (e + "") : ("0" + e)) + ':' + (f > 9 ? (f + "") : ("0" + f));
  989. return datetime
  990. };
  991. $(".pl_nrong").on("click", ".pl_zan", function() {
  992. var b = $(this).parents(".comment_xg").find(".comment_replynum .comment_xg_reply").attr("data-id");
  993. var c = this;
  994. $.ajax({
  995. url: puturl,
  996. dataType: "json",
  997. async: true,
  998. data: {
  999. act: 5,
  1000. id: b,
  1001. from: 1,
  1002. },
  1003. type: "POST",
  1004. success: function(r) {
  1005. if (r.status == 1) {
  1006. var a = $(c).find("cite").html();
  1007. $(c).find("cite").html(parseInt(a) + 1)
  1008. } else {
  1009. $(".tskuan_black p").html(r.message);
  1010. $(".tskuan_black").show();
  1011. setTimeout(function() {
  1012. $(".tskuan_black").hide();
  1013. if (r.message == "请重新登录") {
  1014. window.location.href = domainwww + "login"
  1015. };
  1016. $(".tskuan_black").hide()
  1017. }, 2000)
  1018. }
  1019. },
  1020. error: function(r) {},
  1021. })
  1022. });
  1023. $(".pl_nrong").on("click", ".pl_cai", function() {
  1024. var b = $(this).parents(".comment_xg").find(".comment_replynum .comment_xg_reply").attr("data-id");
  1025. var c = this;
  1026. $.ajax({
  1027. url: puturl,
  1028. dataType: "json",
  1029. async: true,
  1030. data: {
  1031. act: 5,
  1032. id: b,
  1033. from: 2,
  1034. },
  1035. type: "POST",
  1036. success: function(r) {
  1037. if (r.status == 1) {
  1038. var a = $(c).find("cite").html();
  1039. $(c).find("cite").html(parseInt(a) + 1)
  1040. } else {
  1041. $(".tskuan_black p").html(r.message);
  1042. $(".tskuan_black").show();
  1043. setTimeout(function() {
  1044. $(".tskuan_black").hide();
  1045. if (r.message == "请重新登录") {
  1046. window.location.href = domainwww + "login"
  1047. };
  1048. $(".tskuan_black").hide()
  1049. }, 2000)
  1050. }
  1051. },
  1052. error: function(r) {},
  1053. })
  1054. });
  1055. $(".pl_nrong").on("click", ".jubaopl", function() {
  1056. var c = $(this).parents("li").find(".comment_xg .comment_xg_reply").attr("data-id");
  1057. $(".report_block").addClass("jubao_active");
  1058. if ($(".mask").length > 0) {
  1059. $(".mask").addClass("mask_active")
  1060. } else {
  1061. $("body").append('<div class="mask"></div>');
  1062. $(".mask").addClass("mask_active")
  1063. };
  1064. $(".report_block").attr("data-id", c);
  1065. $.ajax({
  1066. url: geturl,
  1067. dataType: "json",
  1068. async: true,
  1069. data: {
  1070. act: 51,
  1071. },
  1072. type: "POST",
  1073. success: function(r) {
  1074. var b = r.data;
  1075. if (r.data.length > 0) {
  1076. $(".report_item").html('');
  1077. $.each(b, function(i, v) {
  1078. var a = "<li data-id='" + v.id + "'><span></span>" + v.option + "</li>";
  1079. $(".report_item").append(a)
  1080. })
  1081. }
  1082. },
  1083. error: function(r) {},
  1084. })
  1085. });
  1086. $(".offjubao").click(function() {
  1087. $(".report_block").removeClass("jubao_active");
  1088. setTimeout(function() {
  1089. $(".mask_active").removeClass("mask_active");
  1090. $(".mask").remove()
  1091. }, 300)
  1092. });
  1093. $(".report_item").on("click", "li", function() {
  1094. if ($(this).is('.report_item_select')) {
  1095. $(this).removeClass("report_item_select")
  1096. } else {
  1097. $(this).addClass("report_item_select").siblings().removeClass("report_item_select")
  1098. }
  1099. });
  1100. $(".report_btn_queding").click(function() {
  1101. var a = $(".report_item").find(".report_item_select").attr("data-id");
  1102. var b = $(".report_block").attr("data-id");
  1103. var c = '';
  1104. if (a == undefined) {
  1105. c = ''
  1106. } else {
  1107. c = a
  1108. } if (c == '') {
  1109. $(".tskuan_black").show();
  1110. $(".tskuan_black p").html("举报内容不能为空");
  1111. setTimeout(function() {
  1112. $(".tskuan_black").hide()
  1113. }, 2000)
  1114. } else {
  1115. $.ajax({
  1116. url: puturl,
  1117. dataType: "json",
  1118. async: true,
  1119. data: {
  1120. act: 6,
  1121. id: b,
  1122. reportid: c,
  1123. },
  1124. type: "POST",
  1125. success: function(r) {
  1126. $(".report_block").removeClass("jubao_active");
  1127. setTimeout(function() {
  1128. $(".mask_active").removeClass("mask_active");
  1129. $(".mask").remove()
  1130. }, 300);
  1131. $(".report_block").attr("data-id", '');
  1132. if (r.status == 1) {
  1133. $(".tskuan_black p").html(r.message);
  1134. $(".tskuan_black").show();
  1135. setTimeout(function() {
  1136. $(".tskuan_black").hide()
  1137. }, 2000)
  1138. } else {
  1139. $(".tskuan_black p").html(r.message);
  1140. $(".tskuan_black").show();
  1141. setTimeout(function() {
  1142. $(".tskuan_black").hide()
  1143. }, 2000);
  1144. setTimeout(function() {
  1145. if (r.message == "请重新登录") {
  1146. window.location.href = domainwww + "login"
  1147. };
  1148. $(".tskuan_black").hide()
  1149. }, 2000)
  1150. }
  1151. },
  1152. error: function(r) {},
  1153. })
  1154. }
  1155. });
  1156. $(".shuaxingpl").click(function() {
  1157. $(this).find(".character360").addClass("dhua");
  1158. chushipllist();
  1159. $(".tskuan_black p").html("评论刷新成功");
  1160. $(".tskuan_black").show();
  1161. setTimeout(function() {
  1162. $(".tskuan_black").hide();
  1163. $(".tskuan_black p").html('')
  1164. }, 2000);
  1165. setTimeout(function() {
  1166. var a = $(".pl_num cite").html();
  1167. if (a > 10) {
  1168. $(".jzmorepl").show()
  1169. } else {
  1170. $(".jzmorepl").hide()
  1171. };
  1172. $(".shuaxingpl").find(".character360").removeClass("dhua")
  1173. }, 1500)
  1174. });
  1175. var device = navigator.userAgent;
  1176. var isAndroid = device.indexOf('Android') > -1 || device.indexOf('Adr') > -1;
  1177. var isiOS = !!device.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/);
  1178. var device = navigator.userAgent;
  1179. var isAndroid = device.indexOf('Android') > -1 || device.indexOf('Adr') > -1;
  1180. var isiOS = !!device.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/);
  1181. var device = navigator.userAgent;
  1182. var isAndroid = device.indexOf('Android') > -1 || device.indexOf('Adr') > -1;
  1183. var isiOS = !!device.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/);
  1184. if (isiOS) {
  1185. document.body.addEventListener('focusin', () => {
  1186. $('.report_block').css({
  1187. 'position': 'static',
  1188. 'display': 'none'
  1189. });
  1190. $('.fabianpl').css('position', 'static')
  1191. });
  1192. document.body.addEventListener('focusout', () => {
  1193. $('.report_block').css({
  1194. 'position': 'fixed',
  1195. 'bottom': '0',
  1196. 'display': 'inline'
  1197. });
  1198. $('.fabianpl').css({
  1199. 'position': 'fixed',
  1200. 'top': 'auto',
  1201. "bottom": "0px"
  1202. })
  1203. })
  1204. }