21 lines
540 B
Plaintext
21 lines
540 B
Plaintext
<!--pages/home/components/home-swiper/index.wxml-->
|
|
<swiper
|
|
indicator-dots="{{indicatorDots}}"
|
|
autoplay="{{autoplay}}"
|
|
interval="{{interval}}"
|
|
duration="{{duration}}"
|
|
wx:if="{{list.length}}"
|
|
>
|
|
<block wx:for="{{list}}" wx:key="{{item.id}}" wx:item="item">
|
|
<swiper-item>
|
|
<van-image
|
|
width="100%"
|
|
height="100%"
|
|
lazy-load
|
|
src="{{item.url}}"
|
|
data-data="{{item}}"
|
|
bind:click="handleJump"
|
|
/>
|
|
</swiper-item>
|
|
</block>
|
|
</swiper> |