<view class=“wrap”>
<swiper indicator-color="{{color}}" indicator-active-color="{{active}}" indicator-dots="{{dots}}" autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}" class=“cover”>
<block wx:for="{{img}}" wx:key=“img”>
<swiper-item>
<image src="{{item}}" class=“cover”></image>
</swiper-item>
</block>
</swiper>
</view>
data:{
img:[
‘http://y.gtimg.cn/music/photo_new/T003R720x288M000000rVobR3xG73f.jpg’,
‘http://y.gtimg.cn/music/photo_new/T003R720x288M000000j6Tax0WLWhD.jpg’,
‘http://y.gtimg.cn/music/photo_new/T003R720x288M000000a4LLK2VXxvj.jpg’,
],
dots: true,
color: ‘rgba(0,0,0,.3)’,
active: ‘#2caf6f’,
autoplay: true,
interval: 3000,
duration: 1000,
},