You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
440 B
9 lines
440 B
2 weeks ago
|
<view class="swiper">
|
||
|
<swiper class="myswiper" indicator-dots="{{ indicatorDots }}" autoplay="{{ autoplay }}" interval="{{ interval }}" duration="{{ duration }}" indicator-color="#fff" indicator-active-color="#fa2c19">
|
||
|
<block wx:for="{{ swiperData }}" wx:key="index">
|
||
|
<swiper-item>
|
||
|
<image mode="widthFix" src="{{ item.url }}"></image>
|
||
|
</swiper-item>
|
||
|
</block>
|
||
|
</swiper>
|
||
|
</view>
|