// 处于页面配置时,绑定方法 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') ) }) // 处于页面配置时,绑定方法 start if ($isDecorateMode) { document.addEventListener('diy_skuDetail/1', (event) => { const { field, value } = event.detail if (field == 'tabs') { $('.ys-sku__tabs').empty() $('.ys-sku__tabs').append( $( value .filter((e) => e.enable) .map((e) => { return `
  • ${e.name}
  • ` }) .join('') ) ) $('.ys-sku__tabs li:first-child').click() } }) } // 处于页面配置时,绑定方法 end // 预览图纸 $('.sku-drawing').on('click', 'a', function (event) { const url = $(this).attr('url') previewPdf(url) clickDrawLog.call(this) }) // 查看图纸 $('.sku-drawing').on('click', '.icon-eye', function (event) { const url = $(this).parents('.sku-drawing').find('a').attr('url') previewPdf(url) clickDrawLog.call(this) }) // 下载图纸 $('.sku-drawing').on('click', '.icon-down', function (event) { const url = $(this).parents('.sku-drawing').find('a').attr('url') const title = $(this).parents('.sku-drawing').find('a').text() let link = document.createElement('a') link.setAttribute('href', url) link.setAttribute('download', title) link.setAttribute('target', '__blank') document.body.appendChild(link) link.click() document.body.removeChild(link) clickDrawLog.call(this, 'download') }) // 询价 $('.sku-action').on('click', 'button:first', function (event) {}) // 申请试样 $('.sku-action').on('click', 'button:last', function (event) { const code = $(this).attr('data-code') window.open('/free_sample.html?sku_code=' + code) }) // tabs点击 $('.ys-sku__tabs').on('click', 'li', function (event) { const text = $(this).text() $('.ys-sku__tabs li').removeClass('active') $(this).addClass('active') $('.ys-sku__tab-item > div').addClass('display-none') $(`.ys-sku__tab-item > div[role=${text}]`).removeClass('display-none') }) // 联系客服 $('.sku-action button:first').click(function () { window.dispatchEvent(new CustomEvent('openService')) }) /********* 轮播方法 start **********/ let pos = 0 let totalSlides = $('.sku-banner .sku-banner__slider .banner-slide').length let sliderWidth = $('.sku-banner .sku-banner__slider').width() $(function () { $('.sku-banner .sku-banner__slider').width(sliderWidth * totalSlides) // $('.sku-banner .sku-banner__slider').css('display', 'flex') pagination() $('.sku-banner__indicator li').click(function () { pos = $(this).index() $('.sku-banner .sku-banner__slider').css('transform', `translateX(${-(sliderWidth * pos)}px)`) pagination() }) }) function slideLeft() { pos-- if (pos == -1) { pos = totalSlides - 1 } $('.sku-banner .sku-banner__slider').css('left', -(sliderWidth * pos)) pagination() } function slideRight() { pos++ if (pos == totalSlides) { pos = 0 } $('.sku-banner .sku-banner__slider').css('left', -(sliderWidth * pos)) pagination() } function pagination() { $('.sku-banner__indicator li').removeClass('active') $('.sku-banner__indicator li:eq(' + pos + ')').addClass('active') } /********* 轮播方法 end **********/ /********* 放大镜 start **********/ $('.sku-banner .banner-slide').on('mouseenter', function () { if (!$(this).find('img').attr('src').includes('http')) return $(this).find('.mask').show() $('.sku-mirror').show() }) $('.sku-banner .banner-slide').on('mouseleave', function () { $(this).find('.mask').hide() $('.sku-mirror').hide() }) $('.sku-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 let maskX = x - $(this).find('.mask').width() / 2 let maskY = y - $(this).find('.mask').height() / 2 if (maskX <= 0) { maskX = 0 } else if ( maskX >= $(this).find('img').width() - $(this).find('.mask').width() ) { maskX = $(this).find('img').width() - $(this).find('.mask').width() } if (maskY <= 0) { maskY = 0 } else if ( maskY >= $(this).find('img').height() - $(this).find('.mask').height() ) { maskY = $(this).find('img').height() - $(this).find('.mask').height() } $(this) .find('.mask') .css('left', maskX + 'px') .css('top', maskY + 'px') let maxLittleMove = $(this).find('img').width() - $(this).find('.mask').width() $('.sku-mirror img').attr('src', $(this).find('img').attr('src')) let maxBigMove = $('.sku-mirror img').width() - $('.sku-mirror').width() $('.sku-mirror img') .css('left', (-maskX * maxBigMove) / maxLittleMove + 'px') .css('top', (-maskY * maxBigMove) / maxLittleMove + 'px') }) /********* 放大镜 end **********/ // 下载页面 $('#download-page').on('click', function () { window.print() }) // 点击分享相关 $('.sku-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=` ) }) $('.sku-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', }) }) // 复制链接 $('.sku-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('复制成功') }) /* 电梯 start */ const fixedHeight = 107 + 40; // 导航栏高度 + 容错 let floorTopList = [] function getFloorItemTop() { floorTopList = []; $(".ys-sku__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) { changeTabActive(i); } } }, 100, { leading: false } ); function initScrollTab() { getFloorItemTop(); handleScroll(); $(window).on("resize", function () { getFloorItemTop(); }); $(window).on("scroll", handleScroll); } initScrollTab(); // tab 切换 let tabTimer; $(".ys-sku__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) { $(".ys-sku__tabs li.active").removeClass("active"); $(".ys-sku__tabs li").eq(index).addClass("active"); } /* 电梯 end */ /* 埋点 start */ $(function(){ productViewItem() // 产品详情 productListLog() // 配套和推荐产品列表展示 productSelectItemClick() // 配套和推荐产品点击 }) // 产品详情查看 function productViewItem() { const ecommerceObj = { event: "view_item", ecommerce: { currency: "CNY", value: 1, items: [ { item_id: $('.sku-no span').text(), item_name: $('.sku-title').text(), item_category: $('body > nav > ul > li:nth-child(3) > a').text().trim(), item_category2: $('body > nav > ul > li:nth-child(4) > a').text().trim(), } ] } } customEventLog('ecommerce', ecommerceObj, {onlyTrack: ["DataLayerTracker"]}) // ga ecommerce埋点相关 } const ItemListInfo = { related: { id: 'sku_related_list', name: 'Sku related list', selector: '.sku-recommend' }, recommend: { id: 'sku_recommend_list', name: 'Sku recommend list', selector: '.sku-product' } } /* 推荐产品&配套产品列表展现数据上报 start */ function productListLog() { // 配套产品 productViewItemList(ItemListInfo.related.selector, ItemListInfo.related.id, ItemListInfo.related.name) // 推荐产品 productViewItemList(ItemListInfo.recommend.selector, ItemListInfo.recommend.id, ItemListInfo.recommend.name) } function productViewItemList(parentSelector, ItemListId, ItemListName) { const skuNo = $('.sku-no span').text() const itemsInfoList = getProductListInfoBySelector(parentSelector, ItemListId, ItemListName, {from_sku: skuNo}) if(!Array.isArray(itemsInfoList) || !itemsInfoList.length) return const ecommerceListObj = { event: "view_item_list", ecommerce: { item_list_id: ItemListId, item_list_name: ItemListName, items: itemsInfoList, } } customEventLog('ecommerce', ecommerceListObj, {onlyTrack: ["DataLayerTracker"]}) } // 获取推荐产品和关联产品列表数据 // parentSelector = .sku-recommend || .sku-product function getProductListInfoBySelector(parentSelector, ItemListId, ItemListName, otherInfo = {}) { const itemInfoList = []; $(parentSelector + ' .grid-item').each(function (index, value) { const parentEle = $(this); const item = { item_id: parentEle.find('.product-title').text().trim(), item_name: parentEle.find('.product-description').text().trim(), index: parentEle.index() + 1, item_list_id: ItemListId, item_list_name: ItemListName, ...otherInfo || {} // 其他自定义属性 主要为 {from_sku: sku料号} } itemInfoList.push(item) }) return itemInfoList } /* 推荐产品&配套产品列表展现数据上报 end */ /* 推荐产品&配套产品列表点击 start */ function productSelectItemClick() { // 配套产品 $(ItemListInfo.related.selector).on('click', '.grid-item', function(){ productSelectItem.call(this, ItemListInfo.related.id, ItemListInfo.related.name) }) // 推荐产品 $(ItemListInfo.recommend.selector).on('click', '.grid-item', function(){ productSelectItem.call(this, ItemListInfo.recommend.id, ItemListInfo.recommend.name) }) } function productSelectItem(ItemListId, ItemListName) { const itemEle = $(this) const ecommerceItemObj = { event: "select_item", ecommerce : { item_list_id: ItemListId, item_list_name: ItemListName, items: [{ item_id: itemEle.find('.product-title').text().trim(), item_name: itemEle.find('.product-description').text().trim(), index: itemEle.index() + 1, item_list_id: ItemListId, item_list_name: ItemListName, from_sku: $('.sku-no span').text() }] } } customEventLog('ecommerce', ecommerceItemObj, {onlyTrack: ["DataLayerTracker"]}) } /* 推荐产品&配套产品列表点击 end */ /* 图纸点击 start */ /** * @description: 图纸点击埋点 * @param {'preview' | 'download'} eventType - 点击的类型为预览或下载 */ function clickDrawLog(eventType = 'preview') { const drawEle = $(this).parents('.sku-drawing') const titleEle = drawEle.children('span').eq(0) const drawInfo = { draw_type: titleEle.text() === '2D图纸' ? '2d' : '3d', // 图纸类型 draw_event_type: eventType, draw_item_id: $('.sku-no > span').text(), draw_item_name: $('.sku-title').text().trim(), from_list_name: '', } customEventLog("set", { key:'clue', value:eventType === 'preview'?'click_draw' : 'click_draw_download'}, {onlyTrack: ["ClarityTracker"]}); // clarity标签 customEventLog('click_draw', drawInfo, {onlyTrack: ["DataLayerTracker"]}) } /* 图纸点击 end */ /* 埋点 end */ // 处于页面配置时,绑定方法 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) => `${item.alt}`) .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) => `${item.alt}`) .join('') ) $('.ys-footer__content .right-part').empty() $('.ys-footer__content .right-part').append(nodes) } else if (field === 'friendly_links') { const nodes = $( value .map( (e) => `
  • ${e.title}
  • ` ) .join('') ) $('.ys-footer__friendly ul').empty() $('.ys-footer__friendly ul').append(nodes) } else if (field === 'copyright') { $('.copyright-wrap span').text(value) } else if (field === 'beian') { $('.copyright-wrap a').text(value) } else if (field === 'footer_logo') { $('.footer-logo').attr('alt', value.alt) $('.footer-logo').attr('src', value.src) } else if (field === 'map_links') { const nodes = $( value .map( (e) => ` ${e.title} ` ) .join('') ) $('.ys-footer__end .end-link').empty() $('.ys-footer__end .end-link').append(nodes) } }) } window.addEventListener('openService', openService) // 监听全局客服点击事件 $('#backTop').click(function () { $('html, body').animate({ scrollTop: 0 }, 300) }) $('.ys-rightNav .online-serve').click(function() { openService() }) // 打开客服弹窗 function openService() { if ($('#aff-im-root .embed-icon-pcIcon5').length > 0) { $('#aff-im-root .embed-icon-pcIcon5').click() } else { $('#newBridge .nb-icon-wrap').click() } customEventLog("open_server"); // 打点 customEventLog("set", { key:'purchase', value:'service'}, {onlyTrack: ["ClarityTracker"]}); // clarity标签 } // 监听页面滚动 $(window).scroll(function () { $('.ys-rightNav #backTop').css('display', $(document).scrollTop() ? 'block' : 'none') })