...
|
...
|
@@ -112,16 +112,22 @@ if ($('.banner-swiper').find('li').size() > 1) { |
|
|
}
|
|
|
|
|
|
// single_image的轮播
|
|
|
if ($('.banner-center-swiper').find('li').size() > 1) {
|
|
|
new Swiper('.banner-center-swiper', {
|
|
|
loop: true,
|
|
|
autoplay: 3000,
|
|
|
autoplayDisableOnInteraction: false,
|
|
|
paginationClickable: true,
|
|
|
slideElement: 'li',
|
|
|
pagination: '.banner-center .pagination-inner'
|
|
|
});
|
|
|
}
|
|
|
|
|
|
|
|
|
$('.banner-center-swiper').each(function() {
|
|
|
if ($(this).find('li').size() > 1) {
|
|
|
new Swiper('.banner-center-swiper', {
|
|
|
loop: true,
|
|
|
autoplay: 3000,
|
|
|
autoplayDisableOnInteraction: false,
|
|
|
paginationClickable: true,
|
|
|
slideElement: 'li',
|
|
|
pagination: '.banner-center .pagination-inner',
|
|
|
});
|
|
|
} else {
|
|
|
$(this).unbind();
|
|
|
}
|
|
|
});
|
|
|
|
|
|
// 热门品牌滑动
|
|
|
new Swiper('.brands-swiper', {
|
...
|
...
|
@@ -245,6 +251,7 @@ var checkShop = function() { |
|
|
$('.recom-shop').each(function() {
|
|
|
shopIds.push($(this).attr('shopId'));
|
|
|
});
|
|
|
shopIds.length &&
|
|
|
$.ajax({
|
|
|
type: 'POST',
|
|
|
url: '/channel/shopRecom',
|
...
|
...
|
|