|
|
'use strict';
|
|
|
require('activity/friend-invite.page.css');
|
|
|
let PRDID = [];
|
|
|
let Swiper = require('yoho-swiper');
|
|
|
let $avatarWrap = $('.avatar-wrap');
|
|
|
let bannerLen = $('.avatar-wrap').find('.swiper-slide').length;
|
|
|
|
|
|
$('.good-list').find('.goods-info').each(function() {
|
|
|
PRDID.push($(this).data('good-id'));
|
...
|
...
|
@@ -31,3 +34,17 @@ $('.goods-info').click(function() { |
|
|
}, true);
|
|
|
}
|
|
|
});
|
|
|
|
|
|
if (bannerLen > 0) {
|
|
|
new Swiper($avatarWrap.find('.avatar-swiper')[0], {
|
|
|
lazyLoading: true,
|
|
|
lazyLoadingInPrevNextAmount: 3,
|
|
|
initialSlide: 1,
|
|
|
centeredSlides: true,
|
|
|
slidesPerView: 'auto',
|
|
|
loopedSlides: bannerLen,
|
|
|
watchSlidesProgress: true,
|
|
|
watchSlidesVisibility: true,
|
|
|
spaceBetween: 10
|
|
|
});
|
|
|
} |
...
|
...
|
|