14 lines
509 B
Plaintext
Executable File
14 lines
509 B
Plaintext
Executable File
<swiper
|
|
indicator-dots="{{propData.length > 0}}"
|
|
indicator-color="{{indicator_color}}"
|
|
indicator-active-color="{{indicator_active_color}}"
|
|
autoplay="{{propData.length > 0}}"
|
|
circular="{{circular}}"
|
|
class="banner"
|
|
wx:if="{{propData.length > 0}}">
|
|
<block wx:for="{{propData}}" wx: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> |