// 处于页面配置时,绑定方法 start
if ($isDecorateMode) {
document.addEventListener("diy_header/1", (event) => {
const { field, value } = event.detail;
console.log(field, value)
if (field === 'hots') {
let html = ''
value.forEach(e => {
html += `${e.name}`
})
$('.' + field).html(html)
}
});
}
// 处于页面配置时,绑定方法 end
$(function () {
$("#logout").click(function () {
$request
.post("/api/user/logout")
.then((res) => {
// 跳转页面
location.href = "/";
});
})
// 防止一开始进入页面在底部不显示
setHeaderSticky()
$(window).scroll(setHeaderSticky)
function setHeaderSticky(){
let offset = $("html,body").scrollTop()
if (offset) {
$('.ys-header').addClass('is-sticky')
} else {
$('.ys-header').removeClass('is-sticky')
}
}
// 导航栏悬停
$('.ys-header__nav .nav-item').hover(function () {
$(this).find('.ys-header__card').addClass('show')
if(!$(this).hasClass('ignore'))
$('.ys-header__cover').removeClass('display-none')
}, function () {
$(this).find('.ys-header__card').removeClass('show')
$('.ys-header__cover').addClass('display-none')
})
// 产品中心悬停
$('.ys-header__nav .product-item').hover(function () {
$('.ys-header__nav .product-child').addClass('display-none')
$('.ys-header__nav .product-item').removeClass('active')
$(this).addClass('active')
$(this).next().removeClass('display-none')
})
// 搜索框悬停事件
$('.ys-header__search').focus(function () {
$('.ys-header__nav').addClass('display-none')
$('.ys-header__right').addClass('open')
}, function() {
if (!$('.ys-header__search-card').hasClass('show')) {
$('.ys-header__nav').removeClass('display-none')
$('.ys-header__right').removeClass('open')
}
})
// 搜索框聚焦事件
$('.ys-header__search input').focus(function () {
openSearchCard()
})
$('.ys-header__search-card .icon-close').click(function () {
closeSearchCard()
})
$(document).on('click', function (e) {
if (!$('.ys-header__search-card')[0].contains(e.target) && !$('.ys-header__search input').is(':focus')) {
closeSearchCard()
}
})
// 搜索
$('.ys-header__search input').keyup(function (e) {
if (e.keyCode === 13) {
search()
}
})
$('.ys-header__search .search-btn').click(function () {
search()
})
// 清空历史记录
$('.ys-header__search-card .search-history span').click(function () {
localStorage.removeItem('searchHistory')
setHistory()
})
// 展开搜索卡片
function openSearchCard() {
$('.ys-header__nav').addClass('display-none')
$('.ys-header__search-card').addClass('show')
$('.ys-header__cover').removeClass('display-none')
$('.ys-header__right').addClass('open')
}
// 收起搜索卡片
function closeSearchCard() {
$('.ys-header__nav').removeClass('display-none')
$('.ys-header__search-card').removeClass('show')
$('.ys-header__cover').addClass('display-none')
$('.ys-header__right').removeClass('open')
}
// 搜索事件
function search() {
let val = $('.ys-header__search input').val()
if (!val) return $message.warning('请输入搜索关键词')
let history = JSON.parse(localStorage.getItem('searchHistory')) || []
history.unshift(val)
history = [...new Set(history)]
localStorage.setItem('searchHistory', JSON.stringify(history.slice(0, 10)))
window.open('/search_result.html?keyword=' + val)
closeSearchCard()
setHistory()
}
// 设置搜索历史
function setHistory() {
let history = JSON.parse(localStorage.getItem('searchHistory')) || []
let html = ''
history.forEach(e => {
html += `${e}`
})
$('.ys-header__search-card .search-history .search-words').html(html)
}
setHistory()
})
// 客服
$('.ys-header-shortcut__server span').click(function(){
window.dispatchEvent(
new CustomEvent('openService')
)
})
// 客服
$(".circular-page").on('click', '.open-service', function () {
window.dispatchEvent(new CustomEvent("openService"));
});
/********* 轮播方法 start **********/
let pos = 0;
let totalSlides = $(".circular-banner .circular-banner__slider .banner-slide").length;
let sliderWidth = $(".circular-banner .circular-banner__slider").width();
$(function () {
$(".circular-banner .circular-banner__slider").width(sliderWidth * totalSlides);
// $('.circular-banner .circular-banner__slider').css('display', 'flex')
pagination();
$(".circular-banner__indicator li").click(function () {
pos = $(this).index();
$(".circular-banner .circular-banner__slider").css(
"transform",
`translateX(${-(sliderWidth * pos)}px)`
);
pagination();
});
});
function slideLeft() {
pos--;
if (pos == -1) {
pos = totalSlides - 1;
}
$(".circular-banner .circular-banner__slider").css("left", -(sliderWidth * pos));
pagination();
}
function slideRight() {
pos++;
if (pos == totalSlides) {
pos = 0;
}
$(".circular-banner .circular-banner__slider").css("left", -(sliderWidth * pos));
pagination();
}
function pagination() {
$(".circular-banner__indicator li").removeClass("active");
$(".circular-banner__indicator li:eq(" + pos + ")").addClass("active");
}
// 指示器轮播
let indicatorCurrent = 0
$('.circular-indicator__arrow.left').click(function() {
let itemWidth = $('.circular-banner__indicator li').get(0).offsetWidth
itemWidth += parseInt(getComputedStyle($('.circular-banner__indicator li').get(0)).marginLeft, 10) * 2
indicatorCurrent -= itemWidth
indicatorCurrent = Math.max(0, indicatorCurrent)
$('.circular-indicator__arrow.right').removeClass('last')
if(indicatorCurrent === 0) {
$(this).addClass('last')
} else {
$(this).removeClass('last')
}
moveIndicator(indicatorCurrent)
})
$('.circular-indicator__arrow.right').click(function() {
const boxWidth = $('.circular-indicator__center').get(0).offsetWidth
const scrollWidth = $('.circular-banner__indicator').get(0).scrollWidth;
let itemWidth = $('.circular-banner__indicator li').get(0).offsetWidth
itemWidth += parseInt(getComputedStyle($('.circular-banner__indicator li').get(0)).marginLeft, 10) * 2
indicatorCurrent += itemWidth
const maxScroll = scrollWidth - boxWidth
indicatorCurrent = Math.min(indicatorCurrent, maxScroll)
$('.circular-indicator__arrow.left').removeClass('last')
if(indicatorCurrent === maxScroll) {
$(this).addClass('last')
} else {
$(this).removeClass('last')
}
moveIndicator(indicatorCurrent)
})
function moveIndicator(offset) {
const scrollBox = $('.circular-banner__indicator').get(0);
scrollBox.style.transform = `translateX(-${offset}px)`;
}
/********* 轮播方法 end **********/
/********* 放大镜 start **********/
$(".circular-banner .banner-slide").on("mouseenter", function () {
if (!$(this).find("img").attr("src").includes("http")) return;
$(this).find(".mask").show();
$(".circular-mirror").show();
});
$(".circular-banner .banner-slide").on("mouseleave", function () {
$(this).find(".mask").hide();
$(".circular-mirror").hide();
});
$(".circular-banner .banner-slide").on("mousemove", function (e) {
let x = e.pageX - $(this).find("img").offset().left;
let y = e.pageY - $(this).find("img").offset().top;
const imgWidth = $(this).find("img").width();
const imgHeight = $(this).find("img").height();
const maskWidth = $(this).find(".mask").width();
const maskHeight = $(this).find(".mask").height();
let maskX = x - $(this).find(".mask").width() / 2;
let maskY = y - maskHeight / 2;
if (maskX <= 0) {
maskX = 0;
} else if (maskX >= imgWidth - maskWidth) {
maskX = imgWidth - maskWidth;
}
if (maskY <= 0) {
maskY = 0;
} else if (maskY >= imgHeight - maskHeight) {
maskY = imgHeight - maskHeight;
}
$(this)
.find(".mask")
.css("left", maskX + "px")
.css("top", maskY + "px");
let maxLittleMove = imgWidth - maskWidth;
$(".circular-mirror img").attr("src", $(this).find("img").attr("src"));
let maxBigMove =
$(".circular-mirror img").width() - $(".circular-mirror").width();
$(".circular-mirror img")
.css("left", (-maskX * maxBigMove) / maxLittleMove + "px")
.css("top", (-maskY * maxBigMove) / maxLittleMove + "px");
});
/********* 放大镜 end **********/
// 下载页面
$("#download-page").on("click", function () {
window.print();
});
// 点击分享相关
$(".circular-share .tencent").on("click", () => {
let url = encodeURIComponent(location.href);
let title = encodeURIComponent($(".article__title").text());
window.open(
`https://connect.qq.com/widget/shareqq/index.html?url=${url}&title=${title}&source=${url}&desc=${title}&pics=`
);
});
$(".circular-share .weibo").on("click", () => {
let url = encodeURIComponent(location.href);
let title = encodeURIComponent($(".article__title").text());
window.open(
`https://service.weibo.com/share/share.php?url=${url}&title=${title}&pic=&appkey=&sudaref=`
);
});
// 创建分享二维码
$().ready(() => {
new QRCode(document.querySelector(".share-options .cover-code div"), {
text: location.href,
width: 90,
height: 90,
colorDark: "#000000",
colorLight: "#ffffff",
});
});
// 复制链接
$(".circular-share .link").on("click", () => {
let oInput = document.createElement("input");
oInput.value = location.href;
document.body.appendChild(oInput);
oInput.select();
document.execCommand("Copy");
oInput.remove();
$message.success("复制成功");
});
/********* tabs start **********/
const fixedHeight = 107 + 40; // 导航栏高度 + 容错
let floorTopList = []
function getFloorItemTop() {
floorTopList = [];
$(".circular-tabs a").each(function () {
floorTopList.push(
Math.ceil($($(this).attr('href')).offset().top - fixedHeight)
);
});
}
const handleScroll = throttle(
function () {
if (
!Array.isArray(floorTopList) ||
!floorTopList.length
)
return;
const scrollTop = $(window).scrollTop();
if (scrollTop <= floorTopList[0]) {
changeTabActive(0);
return;
}
for (let i = 0; i < floorTopList.length; i++) {
const itemTop = floorTopList[i];
if (scrollTop >= itemTop - 20) {
changeTabActive(i);
}
}
},
100,
{ leading: false }
);
function initScrollTab() {
getFloorItemTop();
handleScroll();
$(window).on("resize", function () {
getFloorItemTop();
});
$(window).on("scroll", handleScroll);
}
$(window).on('load', function() {
initScrollTab();
})
// tab 切换
let tabTimer;
$(".circular-tabs").on("click", "a", function () {
const top = $($(this).attr("href")).offset().top - fixedHeight;
$("html, body")
.stop()
.animate(
{
scrollTop: top,
},
300
);
return false;
});
function changeTabActive(index) {
$(".circular-tabs li.active").removeClass("active");
$(".circular-tabs li").eq(index).addClass("active");
}
/********* tabs end **********/
// 客服
$(".service-button").click(function () {
window.dispatchEvent(new CustomEvent("openService"));
});
// 处于页面配置时,绑定方法
if ($isDecorateMode) {
document.addEventListener('diy_footer/1', (event) => {
const { field, value } = event.detail
console.log(field, value)
if (field === 'footer_ad') {
const nodes = $(
value
.map((item) => ``)
.join('')
)
$('.ys-footer__ad').empty()
$('.ys-footer__ad').append(nodes)
} else if (field === 'contact_phone') {
$('.footer_phone').text(value)
} else if (field === 'work_time') {
$('.footer_work_time').text(value)
} else if (field === 'contact_email') {
$('.footer_email').text(value)
} else if (field === 'footer_nav') {
const nodes = $(
value
.map(
(c) => `
`
)
.join('')
)
$('.ys-footer__content .center-part').empty()
$('.ys-footer__content .center-part').append(nodes)
} else if (field === 'right_part') {
const nodes = $(
value
.map((item) => `
`)
.join('')
)
$('.ys-footer__content .right-part').empty()
$('.ys-footer__content .right-part').append(nodes)
} else if (field === 'friendly_links') {
const nodes = $(
value
.map(
(e) => `