index.wxml 1.0 KB

123456789101112131415161718
  1. <!-- banner -->
  2. <view class="supplyAndDemandBanner" wx:if="{{type=='banner'}}" style="margin-top: {{marTop}}rpx; margin-bottom: {{marBot}}rpx;">
  3. <view class="swiperBanner">
  4. <swiper autoplay indicator-dots circular indicator-active-color="#fff" indicator-color="rgba(255,255,255,.5)">
  5. <swiper-item wx:for="{{swiperBannerList}}" wx:key="index">
  6. <image src="{{item.attinfos[0].fobsurl}}" data-index="{{index}}" catchtap="clickToPage" mode="aspectFill"></image>
  7. </swiper-item>
  8. </swiper>
  9. </view>
  10. </view>
  11. <!-- 广告 -->
  12. <view wx:else class="ad-box" style="margin-top: {{marTop}}rpx; margin-bottom: {{marBot}}rpx;">
  13. <swiper class="ad-swiper" autoplay circular indicator-dots indicator-color='rgba(216,216,216,.58)' indicator-active-color='#57C7D3'>
  14. <swiper-item wx:for="{{swiperBannerList}}" wx:key="index">
  15. <image src="{{item.attinfos[0].fobsurl}}" data-index="{{index}}" catchtap="clickToPage" mode="aspectFill"></image>
  16. </swiper-item>
  17. </swiper>
  18. </view>