You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
960 B
28 lines
960 B
<view class="banner">
|
|
<swiper circular="{{true}}" autoplay="{{true}}" interval="{{3000}}" current="{{currentIndex}}" bindchange="swiperChange">
|
|
<swiper-item
|
|
wx:for="{{bannerList}}"
|
|
wx:key="index"
|
|
wx:for-index="index"
|
|
wx:for-item="item">
|
|
<view
|
|
class="banner-item"
|
|
data-id="{{item.id}}"
|
|
data-url="{{item.url}}"
|
|
data-newsflag="{{item.newsFlag}}"
|
|
bindtap="navigatetoBannerDetail">
|
|
<image mode="aspectFill" class="banner-img" src="{{item.imgUrl}}" />
|
|
<view class="banner-content">
|
|
<view class="title">
|
|
<view class="title-text">{{item.title}}</view>
|
|
</view>
|
|
<view class="indication">
|
|
<block wx:for="{{bannerList}}" wx:key="index">
|
|
<view class="spot{{index == currentIndex? ' active' : ''}}"></view>
|
|
</block>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</swiper-item>
|
|
</swiper>
|
|
</view>
|