123456789101112131415161718192021 |
- <view class="swiper" wx:if="{{imgList.length && imgList.length>0}}">
- <swiper indicator-dots="{{indicatorDots}}" current="{{current}}" bindchange="swiperChange"
- circular autoplay="autoplay"
- class="banner-container">
- <block wx:for="{{imgList}}" wx:key="index">
- <swiper-item class="banner-content">
- <van-image src="{{item.imgPath}}" fit="cover" width="{{imgWidth}}" height="{{imgHeight}}"
- radius="{{imgRadius}}" bindtap="onTap" data-index="{{index}}"
- custom-class="banner-img"/>
- </swiper-item>
- </block>
- </swiper>
- <view class="indication" wx:if="{{imgList.length > 1}}">
- <block wx:for="{{imgList}}" wx:key="index">
- <view class="{{index == currentIndex? 'active' : 'default'}}"></view>
- </block>
- </view>
- </view>
- <view wx:else class="default-banner banner-container">
- <van-image src="" width="{{imgWidth}}" height="{{imgHeight}}"/>
- </view>
|