slider.qml 509 字节
Newer Older
D
devil_gong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
<swiper
  indicator-dots="{{propData.length > 0}}"
  indicator-color="{{indicator_color}}"
  indicator-active-color="{{indicator_active_color}}"
  autoplay="{{propData.length > 0}}"
  circular="{{circular}}"
  class="banner"
  qq:if="{{propData.length > 0}}">
  <block qq:for="{{propData}}" qq:key="key">
    <swiper-item>
      <image src="{{item.images_url}}" mode="widthFix" data-value="{{item.event_value}}" data-type="{{item.event_type}}" bindtap="banner_event" />
    </swiper-item>
  </block>
</swiper>