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 line
396 B

  1. <view wx:if="{{list.length>0}}" class="index-slide-view">
  2. <swiper class="index-slide" autoplay="true" circular="false">
  3. <block wx:for="{{list}}" wx:key="unique">
  4. <swiper-item>
  5. <image data-id="{{item.id}}" data-data="{{item}}" mode='widthFix' bindtap='gotobannerdetail' src="{{item.coverImg}}" class="index-slide-image" />
  6. </swiper-item>
  7. </block>
  8. </swiper>
  9. </view>