define("/Assets/enp/v2/js/ebg-module/ebg-module-tab-agenda.js", ["/Assets/enp/v2/js/vendor/swiper-5.3.6.min.js", "/Assets/enp/v2/js/ebg-module/ebg-module-tab.js"], function (s, pub) { function initSwiper($target, showIndex) { new Swiper($target.find(".ebg-tab-head"), { centeredSlides: true, initialSlide: showIndex || 0, spaceBetween: 5, loop: false, slidesPerView: 3.5, }); } return { init:function(){ var winW =$(window).width(); //tab if(winW>=750){ //更多 pub.navInit($(".ebg-module-tab-agenda .tab-pc>.ebg-tab-head"), 750, 750); pub.switchTab({ tab: ".ebg-module-tab-agenda .tab-pc" }); } else { pub.switchTab({ tab: ".ebg-module-tab-agenda .tab-wap" }); //当前时间居中 var activeIndex = $(".ebg-module-tab-agenda .tab-wap").find(".ebg-tab-head-item.active").index()*1; $(".ebg-module-tab-agenda .tab-wap").each(function() { var $this = $(this); if ($this.data("swiper-init")) { return; } $this.data("swiper-init", true); initSwiper($this,activeIndex) }); } } }; });