Browse Source

解决首页、原厂专区、代理经销轮播图点击下面分页器之后图片不能自动轮播的问题

hangb 8 years ago
parent
commit
12feff18fa
2 changed files with 4 additions and 0 deletions
  1. 2 0
      components/home/Carousel.vue
  2. 2 0
      components/provider/Carousel.vue

+ 2 - 0
components/home/Carousel.vue

@@ -31,6 +31,8 @@
         swiperOption: {
           autoplay: 6000,
           pagination: '.swiper-pagination',
+          // 解决点击分页器后图片就不能轮播的问题
+          autoplayDisableOnInteraction: false,
           paginationClickable: true,
           mousewheelControl: false,
           effect: 'fade',

+ 2 - 0
components/provider/Carousel.vue

@@ -26,6 +26,8 @@
           loop: true,
           effect: 'fade',
           lazyLoading: true,
+          // 解决点击分页器后图片就不能轮播的问题
+          autoplayDisableOnInteraction: false,
           pagination: '.swiper-pagination',
           paginationClickable: true,
           paginationElement: 'li',