15 lines
369 B
Plaintext
15 lines
369 B
Plaintext
|
|
<swiper
|
|
class="swiper"
|
|
circular="{{isLoop}}"
|
|
current="{{swiperCurrent}}"
|
|
vertical
|
|
bindchange="onChange"
|
|
bindtouchstart="onStart"
|
|
bindtouchend="onEnd"
|
|
>
|
|
<swiper-item wx:if="{{swiperArr.length > 0}}" wx:for="{{swiperArr}}" wx:key="index">
|
|
<view class="swiper-text">轮播内容:{{item.data}}</view>
|
|
</swiper-item>
|
|
</swiper>
|