|
@@ -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)
|