banner.wxml 1.1 KB

1234567891011121314
  1. <view class='index-banner' style="{{item.style.background?'background:'+item.style.background+';':''}}{{item.style.dotstyle?'dot-style:'+item.style.dotstyle+';':''}}{{item.style.dotalign?'dot-align:'+item.style.dotalign+';':''}}{{item.style.opacity?'opacity:'+item.style.opacity+';':''}}">
  2. <swiper autoplay="{{autoplay}}" circular="{{circular}}"
  3. duration="{{duration}}" indicator-dots="{{indicatorDots}}" indicatorDots="{{indicatorDots}}"
  4. interval="{{interval}}" indicator-color="{{item.style.background}}" class="index-adcs-sqiper index-banner-sqiper"
  5. style="{{bannerheight?'height:' + bannerheight + 'px':'height:auto'}}">
  6. <block wx:for='{{item.data}}' wx:for-item='item' wx:for-index='idx' wx:key="*this">
  7. <swiper-item>
  8. <navigator class="index-advs-navigator" url="{{item.linkurl}}" >
  9. <image mode="widthFix" src="{{item.imgurl}}" bindload="imagesHeight" class="advimg" data-type="bannerheight"></image>
  10. </navigator>
  11. </swiper-item>
  12. </block>
  13. </swiper>
  14. </view>