Переглянути джерело

轮播组件去掉指示器, 两张图片轮播顺序错误修改, 2张-->4张

yx 4 роки тому
батько
коміт
02731fc6a5
1 змінених файлів з 9 додано та 1 видалено
  1. 9 1
      src/components/Rotation/src/rotation.vue

+ 9 - 1
src/components/Rotation/src/rotation.vue

@@ -16,11 +16,13 @@
                 <img :src='item.url' alt />
             </el-carousel-item>
         </el-carousel>-->
+        <!-- 不显示指示器 -->
+        <!-- :indicator-position='rotationImg.length == 1 ? "none":""' -->
         <el-carousel
             v-else
             style='height:100%;width:100%'
             :interval='5000'
-            :indicator-position='rotationImg.length == 1 ? "none":""'
+            indicator-position='none'
             :arrow='rotationImg.length == 1 ? "never":"always"'
             @change='changePic'
         >
@@ -64,6 +66,12 @@ export default {
             }
         }
     },
+    // 解决两张图片时,轮播顺序反向
+    created() {
+        if (this.rotationImg && this.rotationImg.length === 2) {
+            this.rotationImg = [...this.rotationImg, ...this.rotationImg]
+        }
+    },
     mounted() {
         if (this.type == 2) {
             this.changePic(1)