123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209 |
- var domainwww = $("body").attr("data-domainwww");
- var domainstatic = $("body").attr("data-domainstatic");
- var puturl = domainwww + "put";
- var geturl = domainwww + "get";
- if ($(".zbtwonav").length > 0) {
- var navSwiper = new Swiper('.zbtwonav', {
- freeMode: true,
- slidesPerView: 'auto',
- freeModeSticky: true,
- });
- var dhsyz = '';
- var gdwz = 0;
- $(".swiper-wrapper a").each(function(i, o) {
- if ($(o).hasClass("zbtwohover")) {
- dhsyz = i;
- navSlideWidth = $(this).css('width')
- }
- });
- if (dhsyz < 6) {
- navSwiper.setTranslate(0)
- } else {
- gdwz = (parseInt(navSlideWidth) / 2) * (dhsyz + 1);
- navSwiper.setTranslate(-gdwz)
- }
- };
- if ($(".zcplnum").length > 0) {
- $(".zcplnum").click(function() {
- document.getElementById("plmaodian").scrollIntoView()
- })
- };
- if ($(".zhankaiall").length > 0) {
- $(".zhankaiall").click(function() {
- $(".zc_nrong").removeAttr("style");
- $(".yczhezhao").hide();
- $(".zhankaiall").hide()
- })
- };
- if ($(".news_shouc").length) {
- $(".news_shouc").click(function() {
- var a = this;
- var b = $(this).attr("data-scid");
- var c = $(this).attr("data-login");
- if (c == 0) {
- $(".tskuan_black p").html("请先登录后再收藏");
- $(".tskuan_black").show();
- setTimeout(function() {
- $(".tskuan_black").hide();
- window.location.href = domainwww + "login"
- }, 2000)
- } else {
- var d = $(this).find("span").html();
- if (d == "收") {
- $.ajax({
- url: puturl,
- dataType: "json",
- async: true,
- data: {
- act: 2,
- id: b
- },
- type: "POST",
- success: function(r) {
- if (r.status == 1) {
- $(a).find("i").addClass("zxxqsc").html("");
- $(a).find("span").html("已");
- $(a).attr("data-isFav", r.data);
- $(".tskuan_black p").html(r.message);
- $(".tskuan_black").show();
- setTimeout(function() {
- $(".tskuan_black").hide()
- }, 2000)
- };
- if (r.status == 0) {
- $(".tskuan_black p").html(r.message);
- $(".tskuan_black").show();
- setTimeout(function() {
- $(".tskuan_black").hide()
- }, 2000)
- }
- },
- error: function(e) {},
- })
- } else {
- var f = $(this).attr("data-isFav");
- $.ajax({
- url: puturl,
- dataType: "json",
- async: true,
- data: {
- act: 3,
- id: f,
- },
- type: "POST",
- success: function(r) {
- if (r.status == 1) {
- $(a).find("i").removeClass("zxxqsc").html("");
- $(a).find("span").html("收");
- $(a).attr("data-isFav", '0');
- $(".tskuan_black p").html(r.message);
- $(".tskuan_black").show();
- setTimeout(function() {
- $(".tskuan_black").hide()
- }, 1000)
- };
- if (r.status == 0) {
- $(".tskuan_black p").html(r.message);
- $(".tskuan_black").show();
- setTimeout(function() {
- $(".tskuan_black").hide()
- }, 1000)
- }
- },
- error: function(e) {},
- })
- }
- }
- })
- };
- if ($(".pl_nrong").length > 0) {
- chushipllist()
- };
- function chushipllist() {
- var e = $(".fabiaopl").attr("data-id");
- $.ajax({
- url: geturl,
- dataType: "json",
- async: true,
- type: "POST",
- data: {
- act: 102,
- id: e,
- cid: 5
- },
- success: function(r) {
- var b = r.data.paperList;
- var c = r.usersArr;
- var d = r.huifuArr;
- if (r.status == 1) {
- if (r.data.rowSum > 0) {
- $(".pl_num").removeClass("pl_numno")
- };
- $(".pl_num cite").html(r.data.rowSum);
- $(".zcplnum cite").html(r.data.rowSum);
- if (r.data.rowSum > 10) {
- $(".jzmorepl").show()
- } else {
- $(".jzmorepl").hide()
- }; if (b != undefined) {
- if (b.length > 0) {
- $(".pl_nrong .replylist").html('');
- $.each(b, function(i, v) {
- var a = '';
- a += " <li><div class='common_avatar'>";
- a += "<img src='" + r.usersArr[v.uid].picurl + "'>";
- a += " </div><div class='replylist_block'><div class='comment_user'>";
- a += " <p class='fl'><span class='comment_username'>" + r.usersArr[v.uid].nickname + "</span>";
- a += "<span class='comment_time'>" + v.inserttime.substring(5, 16) + "</span></p>";
- a += "<p class='fr jubaopl'><i class='iconfont'></i></p></div>";
- if (r.usersArr[v.uid].status == 1) {
- a += "<div class='comment_content'>" + v.content + "</div>"
- } else {
- a += "<div class='comment_content'>该用户已经被屏蔽</div>"
- };
- a += " <div id='hfdq_" + v.id + "'></div>";
- a += "<div class='comment_xg clearfix'><div class='fl comment_replynum'>";
- if (d[v.id] == undefined) {
- a += "<span class='comment_xg_reply huifupl' data-id='" + v.id + "' data-toid='" + v.toid + "'><cite>回复</cite></span>"
- } else {
- a += "<span class='comment_xg_reply dqhflist' data-id='" + v.id + "' data-toid='" + v.toid + "'><cite>" + d[v.id] + "条回复></cite></span>"
- };
- a += "</div><div class='fr comment_state'>";
- a += "<p class='pl_zan' title='赞'><i class='iconfont'></i><cite>" + v.support + "</cite></p>";
- a += "<p class='pl_cai' title='踩'><i class='iconfont'></i><cite>" + v.despise + "</cite></p>";
- a += "</div></div></div></li>";
- $(".pl_nrong .replylist").append(a)
- })
- } else {
- $(".pl_nrong .replylist").html("<p class='nodata3'><span><img src='" + domainstatic + "wap/img/nodata5.png'></span><cite>暂无评论,点击抢沙发</cite></p>");
- $(".pl_num cite").html("0");
- $(".pl_num").addClass("pl_numno");
- $(".zcplnum cite").html("0");
- $(".jzmorepl").hide()
- }
- };
- $(".pl_nrong .replylist").append("<p class='jzmorepl' data-page='1' data-more='0'>加载更多</p>")
- }
- },
- complete: function() {},
- error: function(r) {},
- })
- };
- setTimeout(function() {
- jzmoreplxs($(".pl_num cite").html())
- }, 1500);
- setInterval("chushipllist()", 300000);
- function jzmoreplxs(a) {
- if (parseInt(a) > 10) {
- $(".jzmorepl").show()
- } else {
- $(".jzmorepl").hide()
- }
- };
- if ($(".wdplnr").length) {
- $('.wdplnr').bind({
- focus: function() {
- var a = $(".fabiaopl_hf").css("display");
- if (a != "block") {
- $(".yh_photo").hide();
- $(".fabiaopl").show();
- $(".djfbpl").removeClass("addzan");
- $(".news_shouc").hide()
- }
- },
- blur: function() {},
- })
- };
- $('.wdplnr').keyup(function() {
- var a = $(this).val();
- if ($(".fabiaopl").is(":hidden") == false) {
- if (a.length > 0) {
- $('.fabiaopl').css("color", "#e60640")
- };
- if (a.length == 0) {
- $('.fabiaopl').css("color", "#999")
- }
- };
- if ($(".fabiaopl_hf").is(":hidden") == false) {
- if ((a.length - hfpl_mcl) > 2) {
- $('.fabiaopl_hf').css("color", "#e60640")
- };
- if ((a.length - hfpl_mcl) == 0) {
- $('.fabiaopl_hf').css("color", "#999")
- }
- }
- });
- $('.wdplnr_gr').keyup(function() {
- var a = $(this).val();
- if ($(".fabiaopl_gr").is(":hidden") == false) {
- if (a.length > 0) {
- $('.fabiaopl_gr').css("color", "#e60640")
- };
- if (a.length == 0) {
- $('.fabiaopl_gr').css("color", "#999")
- }
- };
- if ($(".fabiaopl_hf_gr").is(":hidden") == false) {
- if ((a.length - hfpl_mcl_gr) > 2) {
- $('.fabiaopl_hf_gr').css("color", "#e60640")
- };
- if ((a.length - hfpl_mcl_gr) == 0) {
- $('.fabiaopl_hf_gr').css("color", "#999")
- }
- }
- });
- var plzbjs = true;
- $(".pl_nrong").on("click", ".fabiaopl", function() {
- if (plzbjs) {
- plzbjs = false;
- var b = $(".zbplnr").val();
- var c = $(".fabiaopl").attr("data-id");
- var d = $(".fabiaopl").attr("data-login");
- var e = $(".fabiaopl").attr("data-h");
- if (d == 0) {
- $(".tskuan_black p").html("请先登录后再发表评论");
- $(".tskuan_black").show();
- setTimeout(function() {
- window.location.href = domainwww + "login"
- }, 2000)
- } else if (e == 1) {
- $(".tskuan_black p").html("您已被加入黑名单不能发表评论,请先申诉找回");
- $(".tskuan_black").show();
- setTimeout(function() {
- window.location.href = domainwww + "appeal"
- }, 3000)
- } else {
- var f = $(".zbplnr").val();
- var g = new Date;
- var h = dateFormat(g);
- var i = $(".yh_photo img").attr("src");
- var j = $(".my_mizi").html();
- var k = $(".pl_num cite").html();
- var l = $(".fabiaopl").attr("data-sign");
- if (f == '') {
- $(".tskuan_black p").html("评论内容不能为空");
- $(".tskuan_black").show();
- setTimeout(function() {
- $(".tskuan_black p").html('');
- $(".tskuan_black").hide()
- }, 2000)
- } else {
- $.ajax({
- url: puturl,
- dataType: "json",
- async: true,
- data: {
- act: 4,
- from: 5,
- id: c,
- msg: f,
- sign: l,
- },
- type: "POST",
- success: function(r) {
- if (r.status == 1) {
- $(".pl_num cite").html(parseInt(k) + 1);
- $(".zcplnum cite").html(parseInt(k) + 1);
- $(".pl_num").removeClass("pl_numno");
- jzmoreplxs($(".pl_num cite").html());
- var a = '';
- a += " <li><div class='common_avatar'>";
- a += "<img src='" + i + "'>";
- a += " </div><div class='replylist_block'><div class='comment_user'>";
- a += " <p class='fl'><span class='comment_username'>" + j + "</span>";
- a += "<span class='comment_time'>" + h + "</span></p>";
- a += "<p class='fr jubaopl'><i class='iconfont'></i></p></div>";
- a += "<div class='comment_content'>" + f + "</div>";
- a += " <div id='hfdq_" + r.data + "'></div>";
- a += "<div class='comment_xg clearfix'><div class='fl comment_replynum'>";
- a += "<span class='comment_xg_reply huifupl' data-id='" + r.data + "' data-toid='0'><cite>回复</cite></span>";
- a += "</div><div class='fr comment_state'>";
- a += "<p class='pl_zan' title='赞'><i class='iconfont'></i><cite>0</cite></p>";
- a += "<p class='pl_cai' title='踩'><i class='iconfont'></i><cite></cite></p>";
- a += "</div></div></div></li>";
- if ($(".replylist .nodata3").length > 0) {
- $(".replylist .nodata3").remove()
- };
- $(".pl_nrong .replylist").prepend(a);
- $(".zbplnr").val('');
- $(".yh_photo").show();
- $(".fabiaopl").hide();
- $(".djfbpl").addClass("addzan");
- $(".news_shouc").show();
- $(".tskuan_black p").html(r.message);
- $(".tskuan_black").show();
- setTimeout(function() {
- $(".tskuan_black").hide()
- }, 2000);
- $(".pl_nrong").scrollTop(0)
- } else {
- $(".zbplnr").val('');
- $(".tskuan_black p").html(r.message);
- $(".tskuan_black").show();
- setTimeout(function() {
- $(".tskuan_black").hide()
- }, 2000)
- }
- },
- error: function(r) {},
- })
- }
- };
- setTimeout(function() {
- plzbjs = true
- }, 3000)
- }
- });
- var hfpl_ynr = '';
- var hfpl_ymc = '';
- var hfpl_mcl = '';
- $(".pl_nrong").on("click", ".huifupl", function() {
- var a = $(this).attr("data-id");
- var b = $(this).attr("data-toid");
- $(".zbplnr").focus();
- $(".fabiaopl").hide();
- $(".fabiaopl_hf").show().attr("data-oid", a);
- $(".fabiaopl_hf").attr("data-toid", b);
- hfpl_ynr = Trim($(this).parents(".replylist_block").find(".comment_time").html());
- hfpl_ymc = Trim($(this).parents(".replylist_block").find(".comment_username").html());
- $(".huifupl").removeClass("huifured");
- $(this).addClass("huifured");
- hfpl_mcl = parseInt(hfpl_ymc.length) + 2;
- $(".zbplnr").val('@' + hfpl_ymc + " ")
- });
- var hfpltime = true;
- $(".pl_nrong").on("click", ".fabiaopl_hf", function() {
- var b = '';
- var c = this;
- if (hfpltime) {
- hfpltime = false;
- var d = $(".zbplnr").val();
- var e = $(".fabiaopl_hf").attr("data-id");
- var f = $(".fabiaopl_hf").attr("data-login");
- var g = $(".fabiaopl_hf").attr("data-h");
- var h = $(".fabiaopl_hf").attr("data-oid");
- var i = $(".fabiaopl_hf").attr("data-toid");
- if (f == 0) {
- $(".tskuan_black p").html("请先登录后再发表评论");
- $(".tskuan_black").show();
- setTimeout(function() {
- window.location.href = domainwww + "login"
- }, 2000)
- } else if (g == 1) {
- $(".tskuan_black p").html("您已被加入黑名单不能发表评论,请先申诉找回");
- $(".tskuan_black").show();
- setTimeout(function() {
- window.location.href = domainwww + "appeal"
- }, 3000)
- } else {
- var j = $(".zbplnr").val();
- var k = new Date;
- var l = dateFormat(k);
- var m = $(".yh_photo img").attr("src");
- var n = $(".my_mizi").html();
- var o = $(".fabiaopl_hf").attr("data-sign");
- var p = j.substring(hfpl_mcl);
- if (p == '') {
- $(".tskuan_black p").html("评论内容不能为空");
- $(".tskuan_black").show();
- setTimeout(function() {
- $(".tskuan_black p").html('');
- $(".tskuan_black").hide()
- }, 2000)
- } else {
- if (i == 0) {
- b = h
- } else {
- b = i
- };
- $.ajax({
- url: puturl,
- dataType: "json",
- async: true,
- type: "POST",
- data: {
- act: 4,
- id: e,
- msg: p,
- from: 5,
- oid: h,
- sign: o,
- toid: b,
- },
- success: function(r) {
- if (r.status == 1) {
- var a = '';
- a += "<div class='huifuplnrzs'>";
- a += "<span>" + n + ":</span>" + p + "";
- a += "</div>";
- $("#hfdq_" + h).prepend(a);
- $(".tskuan_black p").html(r.message);
- $(".tskuan_black").show();
- setTimeout(function() {
- $(".tskuan_black").hide()
- }, 2000);
- $(".pl_nrong").scrollTop(0)
- } else {
- $(".zbplnr").val('');
- $(".pl_tanchu p").html(r.message);
- $(".pl_tanchu").fadeIn(300);
- setTimeout(function() {
- $(".pl_tanchu").fadeOut()
- }, 2000)
- }
- },
- complete: function() {
- $(".zbplnr").val('');
- $(".yh_photo").show();
- $(".fabiaopl").hide();
- $(".fabiaopl_hf").hide();
- $(".fabiaopl_hf").hide().attr("data-oid", '');
- $(".huifupl").removeClass("huifured");
- $(".djfbpl").addClass("addzan");
- $(".news_shouc").show()
- },
- error: function(r) {},
- })
- }
- };
- setTimeout(function() {
- hfpltime = true
- }, 3000)
- }
- });
- if ($(".replylist").length > 0) {
- $(".pl_nrong").on("click", ".dqhflist", function() {
- var f = $(this).parents("li").html();
- $(".pinlungrlist .grpl_zhu").html(f);
- $(".pinlungrlist .grpl_zhu").find(".comment_xg_reply").hide();
- $(".replylist").hide();
- $(".pinlungrlist").show();
- $(".fabianpl_gr").show();
- $(".fabianpl").hide();
- $(".zbplnr_gr").val('');
- $(".yh_photo_gr").show();
- $(".fabiaopl_gr").hide();
- $(".fabiaopl_hf_gr").hide();
- $(".fabiaopl_hf_gr").hide().attr("data-oid", '');
- $(".huifupl_gr").removeClass("huifured");
- $(".information").hide();
- $(".xgtuijian").hide();
- var g = $(this).attr("data-id");
- $.ajax({
- url: geturl,
- dataType: "json",
- async: true,
- data: {
- act: 103,
- id: g,
- },
- type: "POST",
- success: function(r) {
- var b = r.data.paperList;
- if (r.data.rowSum > 10) {
- $(".jzmoreplgr").show()
- } else {
- $(".jzmoreplgr").hide()
- };
- $(".grplxqnum").html(r.data.rowSum);
- var c = r.usersArr;
- var d = r.huifuArr;
- var e = r.arr.id;
- if (b.length > 0) {
- $(".pinlungrlist .grhuallliat").html('');
- $.each(b, function(i, v) {
- var a = '';
- a += "<li>";
- a += "<div class='common_avatar'>";
- a += "<img src='" + r.usersArr[v.uid].picurl + "'>";
- a += "</div>";
- a += "<div class='replylist_block'>";
- a += "<div class='comment_user'>";
- 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>";
- a += "<p class='fr jubaopl'><i class='iconfont'></i></p>";
- a += "</div>";
- a += "<div class='comment_content'>";
- if (r.usersArr[v.uid].status == 1) {
- if (v.oid == e) {
- a += "<span>" + v.content + "</span>"
- } else {
- if (r.huifuArr[v.oid] != undefined) {
- a += "<span>" + v.content + "</span>" + "<cite>//@" + c[r.huifuArr[v.oid].uid].nickname + ": </cite>" + r.huifuArr[v.oid].content
- }
- }
- } else {
- a += "<span>该用户已经被屏蔽</span>"
- };
- a += "</div>";
- a += "<div class='comment_xg clearfix'>";
- a += "<div class='fl comment_replynum'>";
- a += "<span class='comment_xg_reply huifupl_gr' data-id='" + v.id + "' data-toid='" + v.toid + "'><cite>回复</cite></span>";
- a += "</div>";
- a += "<div class='fr comment_state'>";
- a += "<p class='pl_zan' title='赞'><i class='iconfont'></i><cite>" + v.support + "</cite></p>";
- a += "<p class='pl_cai' title='踩'><i class='iconfont'></i><cite>" + v.despise + "</cite></p>";
- a += "</div></div></div></li>";
- $(".pinlungrlist .grhuallliat").append(a)
- })
- }
- },
- error: function(r) {},
- })
- });
- $(".grpltitle").click(function() {
- $(".replylist").show();
- $(".pinlungrlist").hide();
- $(".fabianpl_gr").hide();
- $(".fabianpl").show();
- $(".jzmoreplgr").html("加载更多");
- $(".jzmoreplgr").attr("data-more", "0");
- $(".jzmoreplgr").attr("data-page", "1");
- var a = $(".grplxqnum").html();
- var b = $(".pinlungrlist .dqhflist").attr("data-id");
- $("#hfdq_" + b).parents("li").find(".comment_xg_reply cite").html(a + "条回复>");
- $(".information").show();
- $(".xgtuijian").show();
- $(".zbplnr").val('');
- $(".yh_photo").show();
- $(".fabiaopl").hide();
- $(".djfbpl").addClass("addzan");
- $(".news_shouc").show();
- $(".fabiaopl_hf").hide();
- $(".fabiaopl_hf").hide().attr("data-oid", '');
- $(".huifupl").removeClass("huifured")
- })
- };
- if ($(".wdplnr_gr").length) {
- $('.wdplnr_gr').bind({
- focus: function() {
- var a = $(".fabiaopl_hf_gr").css("display");
- if (a != "block") {
- $(".yh_photo_gr").hide();
- $(".fabiaopl_gr").show()
- }
- },
- blur: function() {},
- })
- };
- var plzbjs_gr = true;
- $(".pl_nrong").on("click", ".fabiaopl_gr", function() {
- var c = '';
- if (plzbjs_gr) {
- plzbjs_gr = false;
- var d = $(".fabiaopl_gr").attr("data-id");
- var e = $(".fabiaopl_gr").attr("data-login");
- var f = $(".fabiaopl_gr").attr("data-h");
- if (e == 0) {
- $(".tskuan_black p").html("请先登录后再发表评论");
- $(".tskuan_black").show();
- setTimeout(function() {
- window.location.href = domainwww + "login"
- }, 2000)
- } else if (f == 1) {
- $(".tskuan_black p").html("您已被加入黑名单不能发表评论,请先申诉找回");
- $(".tskuan_black").show();
- setTimeout(function() {
- window.location.href = domainwww + "appeal"
- }, 3000)
- } else {
- var g = $(".zbplnr_gr").val();
- var h = new Date;
- var i = dateFormat(h);
- var j = $(".yh_photo_gr img").attr("src");
- var k = $(".my_mizi_gr").html();
- var l = $(".grplxqnum").html();
- var m = $(".fabiaopl_gr").attr("data-sign");
- if (g == '') {
- $(".tskuan_black p").html("评论内容不能为空");
- $(".tskuan_black").show();
- setTimeout(function() {
- $(".tskuan_black p").html('');
- $(".tskuan_black").hide()
- }, 2000)
- } else {
- var n = $(".grpl_zhu .comment_xg_reply").attr("data-toid");
- var o = $(".grpl_zhu .comment_xg_reply").attr("data-id");
- if (n == 0) {
- c = o
- } else {
- c = n
- };
- $.ajax({
- url: puturl,
- dataType: "json",
- async: true,
- type: "POST",
- data: {
- act: 4,
- id: d,
- msg: g,
- from: 5,
- oid: o,
- sign: m,
- toid: c,
- },
- success: function(r) {
- if (r.status == 1) {
- var a = parseInt(l) + 1;
- $(".grplxqnum").html(a);
- if (a > 10) {
- $(".jzmoreplgr").show()
- } else {
- $(".jzmoreplgr").hide()
- }
- var b = '';
- b += "<li>";
- b += "<div class='common_avatar'>";
- b += "<img src='" + j + "'>";
- b += "</div>";
- b += "<div class='replylist_block'>";
- b += "<div class='comment_user'>";
- b += "<p class='fl'><span class='comment_username'>" + k + "</span><span class='comment_time'>" + i + "</span></p>";
- b += "<p class='fr jubaopl'><i class='iconfont'></i></p>";
- b += "</div>";
- b += "<div class='comment_content'>";
- b += "<span>" + g + "</span>";
- b += "</div>";
- b += "<div class='comment_xg clearfix'>";
- b += "<div class='fl comment_replynum'>";
- b += "<span class='comment_xg_reply huifupl_gr' data-id='" + r.data + "' data-toid='" + c + "'><cite>回复</cite></span>";
- b += "</div>";
- b += "<div class='fr comment_state'>";
- b += "<p class='pl_zan' title='赞'><i class='iconfont'></i><cite>0</cite></p>";
- b += "<p class='pl_cai' title='踩'><i class='iconfont'></i><cite>0</cite></p>";
- b += "</div></div></div></li>";
- $(".grhuallliat").prepend(b);
- $(".tskuan_black p").html(r.message);
- $(".tskuan_black").show();
- setTimeout(function() {
- $(".tskuan_black").hide()
- }, 2000);
- $(".pl_nrong").scrollTop(0)
- } else {
- $(".zbplnr_gr").val('');
- $(".tskuan_black p").html(r.message);
- $(".tskuan_black").show();
- setTimeout(function() {
- $(".tskuan_black").hide()
- }, 2000)
- }
- },
- complete: function() {
- $(".zbplnr_gr").val('');
- $(".yh_photo_gr").show();
- $(".fabiaopl_gr").hide();
- $(".fabiaopl_hf_gr").hide();
- $(".fabiaopl_hf_gr").hide().attr("data-oid", '');
- $(".huifupl_gr").removeClass("huifured")
- },
- error: function(r) {},
- })
- }
- };
- setTimeout(function() {
- plzbjs_gr = true
- }, 3000)
- }
- });
- var hfpl_ynr_gr = '';
- var hfpl_ymc_gr = '';
- var hfpl_mcl_gr = '';
- $(".pl_nrong").on("click", ".huifupl_gr", function() {
- var a = $(this).attr("data-id");
- var b = $(this).attr("data-toid");
- $(".zbplnr_gr").focus();
- $(".fabiaopl_gr").hide();
- $(".fabiaopl_hf_gr").show().attr("data-oid", a);
- $(".fabiaopl_hf_gr").attr("data-toid", b);
- hfpl_ynr_gr = Trim($(this).parents(".replylist_block").find(".comment_content span").html());
- hfpl_ymc_gr = Trim($(this).parents(".replylist_block").find(".comment_username").html());
- $(".huifupl_gr").removeClass("huifured");
- $(this).addClass("huifured");
- hfpl_mcl_gr = parseInt(hfpl_ymc_gr.length) + 2;
- $(".zbplnr_gr").val('@' + hfpl_ymc_gr + " ")
- });
- var hfpltime_gr = true;
- $(".pl_nrong").on("click", ".fabiaopl_hf_gr", function() {
- var c = '';
- var d = this;
- if (hfpltime_gr) {
- hfpltime_gr = false;
- var e = $(".zbplnr_gr").val();
- var f = $(".fabiaopl_hf_gr").attr("data-id");
- var g = $(".fabiaopl_hf_gr").attr("data-login");
- var h = $(".fabiaopl_hf_gr").attr("data-h");
- var i = $(".fabiaopl_hf_gr").attr("data-oid");
- var j = $(".fabiaopl_hf_gr").attr("data-toid");
- if (g == 0) {
- $(".tskuan_black p").html("请先登录后再发表评论");
- $(".tskuan_black").show();
- setTimeout(function() {
- window.location.href = domainwww + "login_gr"
- }, 2000)
- } else if (h == 1) {
- $(".tskuan_black p").html("您已被加入黑名单不能发表评论,请先申诉找回");
- $(".tskuan_black").show();
- setTimeout(function() {
- window.location.href = domainwww + "appeal"
- }, 3000)
- } else {
- var k = $(".zbplnr_gr").val();
- var l = new Date;
- var m = dateFormat(l);
- var n = $(".yh_photo_gr img").attr("src");
- var o = $(".my_mizi_gr").html();
- var p = $(".grplxqnum").html();
- var q = $(".fabiaopl_hf_gr").attr("data-sign");
- var s = k.substring(hfpl_mcl_gr);
- if (s == '') {
- $(".tskuan_black p").html("评论内容不能为空");
- $(".tskuan_black").show();
- setTimeout(function() {
- $(".tskuan_black p").html('');
- $(".tskuan_black").hide()
- }, 2000)
- } else {
- if (j == 0) {
- c = i
- } else {
- c = j
- };
- $.ajax({
- url: puturl,
- dataType: "json",
- async: true,
- type: "POST",
- data: {
- act: 4,
- id: f,
- msg: s,
- from: 5,
- oid: i,
- sign: q,
- toid: c,
- },
- success: function(r) {
- if (r.status == 1) {
- var a = parseInt(p) + 1;
- $(".grplxqnum").html(a);
- if (a > 10) {
- $(".jzmoreplgr").show()
- } else {
- $(".jzmoreplgr").hide()
- };
- var b = '';
- b += "<li>";
- b += "<div class='common_avatar'>";
- b += "<img src='" + n + "'>";
- b += "</div>";
- b += "<div class='replylist_block'>";
- b += "<div class='comment_user'>";
- b += "<p class='fl'><span class='comment_username'>" + o + "</span><span class='comment_time'>" + m + "</span></p>";
- b += "<p class='fr jubaopl'><i class='iconfont'></i></p>";
- b += "</div>";
- b += "<div class='comment_content'>";
- b += "<span>" + s + "</span>" + "<cite>//@" + hfpl_ymc_gr + ": </cite>" + hfpl_ynr_gr;
- b += "</div>";
- b += "<div class='comment_xg clearfix'>";
- b += "<div class='fl comment_replynum'>";
- b += "<span class='comment_xg_reply huifupl_gr' data-id='" + r.data + "' data-toid='" + c + "'><cite>回复</cite></span>";
- b += "</div>";
- b += "<div class='fr comment_state'>";
- b += "<p class='pl_zan' title='赞'><i class='iconfont'></i><cite>0</cite></p>";
- b += "<p class='pl_cai' title='踩'><i class='iconfont'></i><cite>0</cite></p>";
- b += "</div></div></div></li>";
- $(".grhuallliat").prepend(b);
- $(".tskuan_black p").html(r.message);
- $(".tskuan_black").show();
- setTimeout(function() {
- $(".tskuan_black").hide()
- }, 2000);
- $(".pl_nrong").scrollTop(0)
- } else {
- $(".zbplnr_gr").val('');
- $(".tskuan_black p").html(r.message);
- $(".tskuan_black").show();
- setTimeout(function() {
- $(".tskuan_black").hide()
- }, 2000)
- }
- },
- complete: function() {
- $(".zbplnr_gr").val('');
- $(".yh_photo_gr").show();
- $(".fabiaopl_gr").hide();
- $(".fabiaopl_hf_gr").hide();
- $(".fabiaopl_hf_gr").hide().attr("data-oid", '');
- $(".huifupl_gr").removeClass("huifured")
- },
- error: function(r) {},
- })
- }
- };
- setTimeout(function() {
- hfpltime_gr = true
- }, 3000)
- }
- });
- $(".pl_nrong").on("click", ".jzmorepl", function() {
- var f = $(".jzmorepl").attr("data-page");
- var g = parseInt(f) + 1;
- $(".jzmorepl").attr("data-page", g);
- var h = $(this).attr("data-more");
- if (h == 0) {
- var j = $(".fabiaopl").attr("data-id");
- $.ajax({
- url: geturl,
- dataType: "json",
- async: true,
- type: "POST",
- data: {
- act: 102,
- id: j,
- cid: 5,
- page: g,
- },
- success: function(r) {
- var c = r.data.paperList;
- var d = r.usersArr;
- var e = r.huifuArr;
- if (r.status == 1) {
- if (c.length > 0) {
- $.each(c, function(i, v) {
- var a = '';
- a += " <li><div class='common_avatar'>";
- a += "<img src='" + r.usersArr[v.uid].picurl + "'>";
- a += " </div><div class='replylist_block'><div class='comment_user'>";
- a += " <p class='fl'><span class='comment_username'>" + r.usersArr[v.uid].nickname + "</span>";
- a += "<span class='comment_time'>" + v.inserttime.substring(5, 15) + "</span></p>";
- a += "<p class='fr jubaopl'><i class='iconfont'></i></p></div>";
- if (r.usersArr[v.uid].status == 1) {
- a += "<div class='comment_content'>" + v.content + "</div>"
- } else {
- a += "<div class='comment_content'>该用户已经被屏蔽</div>"
- };
- a += " <div id='hfdq_" + v.id + "'></div>";
- a += "<div class='comment_xg clearfix'><div class='fl comment_replynum'>";
- if (e[v.id] == undefined) {
- a += "<span class='comment_xg_reply huifupl' data-id='" + v.id + "' data-toid='" + v.toid + "'><cite>回复</cite></span>"
- } else {
- a += "<span class='comment_xg_reply dqhflist' data-id='" + v.id + "' data-toid='" + v.toid + "'><cite>" + e[v.id] + "条回复></cite></span>"
- }
- a += "</div><div class='fr comment_state'>";
- a += "<p class='pl_zan' title='赞'><i class='iconfont'></i><cite>" + v.support + "</cite></p>";
- a += "<p class='pl_cai' title='踩'><i class='iconfont'></i><cite>" + v.despise + "</cite></p>";
- a += "</div></div></div></li>";
- $(".jzmorepl").before(a);
- var b = $('.pl_nrong').prop("scrollHeight");
- $('.pl_nrong').scrollTop(b, 200)
- })
- } else {
- $(".jzmorepl").html("没有更多评论");
- $(".jzmorepl").attr("data-more", "1")
- }
- }
- },
- complete: function() {},
- error: function(r) {},
- })
- }
- });
- $(".pl_nrong").on("click", ".jzmoreplgr", function() {
- var f = $(".jzmoreplgr").attr("data-page");
- var g = parseInt(f) + 1;
- $(".jzmoreplgr").attr("data-page", g);
- var h = $(this).attr("data-more");
- if (h == 0) {
- var j = $(".pinlungrlist .dqhflist").attr("data-id");
- $.ajax({
- url: geturl,
- dataType: "json",
- async: true,
- data: {
- act: 103,
- id: j,
- page: g,
- },
- success: function(r) {
- var b = r.data.paperList;
- var c = r.usersArr;
- var d = r.huifuArr;
- if (r.status == 1) {
- if (b.length > 0) {
- var e = r.arr.id;
- $.each(b, function(i, v) {
- var a = '';
- a += "<li>";
- a += "<div class='common_avatar'>";
- a += "<img src='" + r.usersArr[v.uid].picurl + "'>";
- a += "</div>";
- a += "<div class='replylist_block'>";
- a += "<div class='comment_user'>";
- 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>";
- a += "<p class='fr jubaopl'><i class='iconfont'></i></p>";
- a += "</div>";
- a += "<div class='comment_content'>";
- if (r.usersArr[v.uid].status == 1) {
- if (v.oid == e) {
- a += "<span>" + v.content + "</span>"
- } else {
- if (r.huifuArr[v.oid] != undefined) {
- a += "<span>" + v.content + "</span>" + "<cite>//@" + c[r.huifuArr[v.oid].uid].nickname + ": </cite>" + r.huifuArr[v.oid].content
- }
- }
- } else {
- a += "<span>该用户已经被屏蔽</span>"
- };
- a += "</div>";
- a += "<div class='comment_xg clearfix'>";
- a += "<div class='fl comment_replynum'>";
- a += "<span class='comment_xg_reply huifupl_gr' data-id='" + v.id + "' data-toid='" + v.toid + "'><cite>回复</cite></span>";
- a += "</div>";
- a += "<div class='fr comment_state'>";
- a += "<p class='pl_zan' title='赞'><i class='iconfont'></i><cite>" + v.support + "</cite></p>";
- a += "<p class='pl_cai' title='踩'><i class='iconfont'></i><cite>" + v.despise + "</cite></p>";
- a += "</div></div></div></li>";
- $(".pinlungrlist .grhuallliat").append(a)
- })
- } else {
- $(".jzmoreplgr").html("没有更多评论");
- $(".jzmoreplgr").attr("data-more", "1")
- }
- }
- },
- complete: function() {},
- error: function(r) {},
- })
- }
- });
- function Trim(a) {
- return a.replace(/(^\s*)|(\s*$)/g, "")
- };
- function dateFormat(d) {
- var a = d.getFullYear();
- var b = d.getMonth() + 1;
- var c = d.getDate();
- var e = d.getHours();
- var f = d.getMinutes();
- datetime = (b > 9 ? (b + "") : ("0" + b)) + '-' + (c > 9 ? (c + "") : ("0" + c)) + ' ' + (e > 9 ? (e + "") : ("0" + e)) + ':' + (f > 9 ? (f + "") : ("0" + f));
- return datetime
- };
- $(".pl_nrong").on("click", ".pl_zan", function() {
- var b = $(this).parents(".comment_xg").find(".comment_replynum .comment_xg_reply").attr("data-id");
- var c = this;
- $.ajax({
- url: puturl,
- dataType: "json",
- async: true,
- data: {
- act: 5,
- id: b,
- from: 1,
- },
- type: "POST",
- success: function(r) {
- if (r.status == 1) {
- var a = $(c).find("cite").html();
- $(c).find("cite").html(parseInt(a) + 1)
- } else {
- $(".tskuan_black p").html(r.message);
- $(".tskuan_black").show();
- setTimeout(function() {
- $(".tskuan_black").hide();
- if (r.message == "请重新登录") {
- window.location.href = domainwww + "login"
- };
- $(".tskuan_black").hide()
- }, 2000)
- }
- },
- error: function(r) {},
- })
- });
- $(".pl_nrong").on("click", ".pl_cai", function() {
- var b = $(this).parents(".comment_xg").find(".comment_replynum .comment_xg_reply").attr("data-id");
- var c = this;
- $.ajax({
- url: puturl,
- dataType: "json",
- async: true,
- data: {
- act: 5,
- id: b,
- from: 2,
- },
- type: "POST",
- success: function(r) {
- if (r.status == 1) {
- var a = $(c).find("cite").html();
- $(c).find("cite").html(parseInt(a) + 1)
- } else {
- $(".tskuan_black p").html(r.message);
- $(".tskuan_black").show();
- setTimeout(function() {
- $(".tskuan_black").hide();
- if (r.message == "请重新登录") {
- window.location.href = domainwww + "login"
- };
- $(".tskuan_black").hide()
- }, 2000)
- }
- },
- error: function(r) {},
- })
- });
- $(".pl_nrong").on("click", ".jubaopl", function() {
- var c = $(this).parents("li").find(".comment_xg .comment_xg_reply").attr("data-id");
- $(".report_block").addClass("jubao_active");
- if ($(".mask").length > 0) {
- $(".mask").addClass("mask_active")
- } else {
- $("body").append('<div class="mask"></div>');
- $(".mask").addClass("mask_active")
- };
- $(".report_block").attr("data-id", c);
- $.ajax({
- url: geturl,
- dataType: "json",
- async: true,
- data: {
- act: 51,
- },
- type: "POST",
- success: function(r) {
- var b = r.data;
- if (r.data.length > 0) {
- $(".report_item").html('');
- $.each(b, function(i, v) {
- var a = "<li data-id='" + v.id + "'><span></span>" + v.option + "</li>";
- $(".report_item").append(a)
- })
- }
- },
- error: function(r) {},
- })
- });
- $(".offjubao").click(function() {
- $(".report_block").removeClass("jubao_active");
- setTimeout(function() {
- $(".mask_active").removeClass("mask_active");
- $(".mask").remove()
- }, 300)
- });
- $(".report_item").on("click", "li", function() {
- if ($(this).is('.report_item_select')) {
- $(this).removeClass("report_item_select")
- } else {
- $(this).addClass("report_item_select").siblings().removeClass("report_item_select")
- }
- });
- $(".report_btn_queding").click(function() {
- var a = $(".report_item").find(".report_item_select").attr("data-id");
- var b = $(".report_block").attr("data-id");
- var c = '';
- if (a == undefined) {
- c = ''
- } else {
- c = a
- } if (c == '') {
- $(".tskuan_black").show();
- $(".tskuan_black p").html("举报内容不能为空");
- setTimeout(function() {
- $(".tskuan_black").hide()
- }, 2000)
- } else {
- $.ajax({
- url: puturl,
- dataType: "json",
- async: true,
- data: {
- act: 6,
- id: b,
- reportid: c,
- },
- type: "POST",
- success: function(r) {
- $(".report_block").removeClass("jubao_active");
- setTimeout(function() {
- $(".mask_active").removeClass("mask_active");
- $(".mask").remove()
- }, 300);
- $(".report_block").attr("data-id", '');
- if (r.status == 1) {
- $(".tskuan_black p").html(r.message);
- $(".tskuan_black").show();
- setTimeout(function() {
- $(".tskuan_black").hide()
- }, 2000)
- } else {
- $(".tskuan_black p").html(r.message);
- $(".tskuan_black").show();
- setTimeout(function() {
- $(".tskuan_black").hide()
- }, 2000);
- setTimeout(function() {
- if (r.message == "请重新登录") {
- window.location.href = domainwww + "login"
- };
- $(".tskuan_black").hide()
- }, 2000)
- }
- },
- error: function(r) {},
- })
- }
- });
- $(".shuaxingpl").click(function() {
- $(this).find(".character360").addClass("dhua");
- chushipllist();
- $(".tskuan_black p").html("评论刷新成功");
- $(".tskuan_black").show();
- setTimeout(function() {
- $(".tskuan_black").hide();
- $(".tskuan_black p").html('')
- }, 2000);
- setTimeout(function() {
- var a = $(".pl_num cite").html();
- if (a > 10) {
- $(".jzmorepl").show()
- } else {
- $(".jzmorepl").hide()
- };
- $(".shuaxingpl").find(".character360").removeClass("dhua")
- }, 1500)
- });
- var device = navigator.userAgent;
- var isAndroid = device.indexOf('Android') > -1 || device.indexOf('Adr') > -1;
- var isiOS = !!device.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/);
- var device = navigator.userAgent;
- var isAndroid = device.indexOf('Android') > -1 || device.indexOf('Adr') > -1;
- var isiOS = !!device.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/);
- var device = navigator.userAgent;
- var isAndroid = device.indexOf('Android') > -1 || device.indexOf('Adr') > -1;
- var isiOS = !!device.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/);
- if (isiOS) {
- document.body.addEventListener('focusin', () => {
- $('.report_block').css({
- 'position': 'static',
- 'display': 'none'
- });
- $('.fabianpl').css('position', 'static')
- });
- document.body.addEventListener('focusout', () => {
- $('.report_block').css({
- 'position': 'fixed',
- 'bottom': '0',
- 'display': 'inline'
- });
- $('.fabianpl').css({
- 'position': 'fixed',
- 'top': 'auto',
- "bottom": "0px"
- })
- })
- }
|