define(["/Assets/enp/v2/js/vendor/swiper-5.3.6.min.js", "/Assets/enp/v2/js/ebg-module/ebg-module-tab.js"], function (s, pub) { var totalW = 0; $('.ebg-module-tab-agenda-tow .ebg-tab .head .tab-menus ul li').each(function() { totalW += $(this).outerWidth(); }); if(totalW > $('.ebg-module-tab-agenda-tow .ebg-tab .head .tab-menus').width()) { new Swiper('.ebg-module-tab-agenda-tow .ebg-tab .tab-menus', { loop: false, slidesPerView: 'auto', roundLengths: true, freeMode: false, watchOverflow: true, centerInsufficientSlides: true, freeMode: true, freeModeMomentum: false, wrapperClass: "ebg-module-tab-agenda-tow .tab-menus ul", slideClass: 'ebg-module-tab-agenda-tow .ebg-tab-head-item', navigation: { nextEl: '.ebg-module-tab-agenda-tow .button-next', prevEl: '.ebg-module-tab-agenda-tow .button-prev', }, }); }else { $('.ebg-module-tab-agenda-tow .ebg-tab .head .tab-menus ul').addClass('min'); $('.ebg-module-tab-agenda-tow .ebg-tab .head .nav-btn').fadeOut(); } var tag; $('.ebg-module-tab-agenda-tow .list .table-con .table-head').on('click', function () { var tabHeiCon = $(this).parent().parent(); // div.tab-hei-con tag = tabHeiCon.attr('class'); if (tag.indexOf('open') !== -1) { tabHeiCon.height(Math.ceil($(this).innerHeight())); tabHeiCon.removeClass('open').addClass('close'); } else { tabHeiCon.height(Math.ceil($(this).parent().height() + 2)); tabHeiCon.removeClass('close').addClass('open'); } }); $('.ebg-module-tab-agenda-tow .list .table-con').each(function (i, e) { if ($(e).children('.tab-hei-con').attr('class').indexOf('open') !== -1) { $(e).children('.tab-hei-con').height(Math.ceil($(e).find('.table').innerHeight() + 2)); } else { $(e).children('.tab-hei-con').height(Math.ceil($(e).find('.table-head').innerHeight())); } }); return { init: function () { var winW = $(window).width(); //tab //更多 if (winW > 1200) { pub.navInit($(".ebg-module-tab-agenda-tow .ebg-tab>.ebg-tab-head"), 750, 750); } pub.switchTab({ tab: ".ebg-module-tab-agenda-tow .ebg-tab" }); } }; });