application.wxml
1.0 KB
<!--pages/application/application.wxml-->
<view class='app_lication_banner'>
<swiper
bindchange='swiperChange'
autoplay="{{autoplay}}"
interval="{{interval}}"
duration="{{duration}}"
circular="{{circular}}"
>
<block wx:for="{{imgUrls}}" wx:key>
<swiper-item>
<image src="{{item}}" class="slide-image" width="100%" height="100%" />
</swiper-item>
</block>
</swiper>
<view class="dots">
<block wx:for="{{imgUrls}}" wx:key="">
<view class="dot{{index == currentSwiper ? ' active' : ''}}"></view>
</block>
</view>
<!-- 跳转下一页 -->
<view class='drop_img' bindtap="jumpFun">
<image src='http://pjq0ww1cj.bkt.clouddn.com/drop.png'></image>
</view>
<!-- 客服 -->
<view class='chat_peo' bindtap="jumpFun">
<button open-type="contact" class='contacButton'>
<image src='http://pjq0ww1cj.bkt.clouddn.com/chat_peo.png'></image>
</button>
</view>
</view>