- <!--pages/home/home.wxml-->
- <view>
- <!-- 轮播 -->
- <view class="page-section page-section-spacing swiper">
- <swiper indicator-dots="{{indicatorDots}}"
- autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}">
- <swiper-item wx:for="{{background}}" wx:key="index">
- <image src="{{item}}" mode=""/>
- </swiper-item>
- </swiper>
- </view>
- <view class="box"></view>
- </view>
|