C端小程序
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 rivejä
490 B

  1. <view wx:if="{{list.length>0}}" class="index-slide-view">
  2. <swiper class="imageContainer" bindchange="handleChange" previous-margin="39rpx" next-margin="40rpx" circular autoplay>
  3. <block wx:for="{{list}}" wx:key="{{index}}">
  4. <swiper-item class="item">
  5. <image data-id="{{item.id}}" data-data="{{item}}" bindtap='gotobannerdetail' class="itemImg {{currentIndex == index ? 'active': ''}}" src="{{item.coverImg}}"></image>
  6. </swiper-item>
  7. </block>
  8. </swiper>
  9. </view>