Files
shopxo/sourcecode/weixin/default/components/slider/slider.wxml

14 lines
509 B
Plaintext
Raw Normal View History

2018-12-29 18:39:25 +08:00
<swiper
2018-12-31 11:34:09 +08:00
indicator-dots="{{propData.length > 0}}"
2018-12-29 18:39:25 +08:00
indicator-color="{{indicator_color}}"
indicator-active-color="{{indicator_active_color}}"
2018-12-31 11:34:09 +08:00
autoplay="{{propData.length > 0}}"
2018-12-29 18:39:25 +08:00
circular="{{circular}}"
2019-01-01 02:53:36 +08:00
class="banner"
2018-12-31 11:34:09 +08:00
wx:if="{{propData.length > 0}}">
<block wx:for="{{propData}}" wx:key="key">
2018-12-29 18:39:25 +08:00
<swiper-item>
2019-01-01 02:53:36 +08:00
<image src="{{item.images_url}}" mode="widthFix" data-value="{{item.event_value}}" data-type="{{item.event_type}}" bindtap="banner_event" />
2018-12-29 18:39:25 +08:00
</swiper-item>
</block>
2018-12-31 11:34:09 +08:00
</swiper>