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.
|
|
|
<!--components/focus/index.wxml-->
|
|
|
|
<view class="focus">
|
|
|
|
<view class="focus_icon">
|
|
|
|
<image src="images/focus.png" style="width: 40px; height: 20px"></image>
|
|
|
|
</view>
|
|
|
|
<view class="focus_swiper" id="focus_swiper">
|
|
|
|
<swiper
|
|
|
|
autoplay="{{true}}"
|
|
|
|
interval="{{3000}}"
|
|
|
|
duration="{{1000}}"
|
|
|
|
vertical="{{true}}"
|
|
|
|
circular="{{true}}"
|
|
|
|
>
|
|
|
|
<block wx:for="{{items}}" wx:key="forcus-{{index}}">
|
|
|
|
<swiper-item>
|
|
|
|
<view bindtap="onTap" data-item="{{item}}" class="focus_swiper_item">{{item.title}}</view>
|
|
|
|
</swiper-item>
|
|
|
|
</block>
|
|
|
|
</swiper>
|
|
|
|
</view>
|
|
|
|
</view>
|