$(function () { const newInfoList = [ "/index", "/customer-case-detail", "/article", "/customer-case", ]; const combinationList = [ "/index", "/customer-case-detail", "/article", "/customer-case", "/salary", "/ruiRecruit", "/ruiPersonnel", ]; const pathname = window.location.pathname; const showNewInfo = newInfoList.some((v) => pathname.includes(v)) || pathname === "/"; let showCombinationBtn = combinationList.some((v) => pathname.includes(v)) || pathname === "/"; if (pathname === "/salarySlip.html") { showCombinationBtn = false; } if (showNewInfo) { const nowDateTime = new Date().getTime(); var isProd = window.isProd; var url = window.reqHost; $.ajax({ url: `${url}/home/open/articleList?articleType=&industry=&pageSize=11&page=1×tamp=${nowDateTime}&signature=${SparkMD5.hash( nowDateTime + "5839606a1e964e5b8464539e7ca419cf" )}`, success: function (res) { $("#accordion").html( template("newInfoList", { data: res.result.articleList, }) ); $(".footer-swiper-container .swiper-slide").click(function (e) { var index = e.currentTarget.dataset.index; var obj = res.result.articleList[+index]; location.href = isProd ? obj.publishUrl : obj.previewUrl; }); new Swiper(".footer-swiper-container", { loop: true, direction: "vertical", height: 30, loopedSlides: res.result.articleList.length, autoplay: { delay: 1500, disableOnInteraction: false, }, }); }, }); } if (showCombinationBtn) { $("#mobile_contact_wrapper").css("display", "flex"); $("#mobile_contact_wrapper_assist").css("display", "flex"); } });