application.wxml 833 字节
<!--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="index">
      <swiper-item>
        <!-- catchtouchmove="stopTouchMove" -->
        <image src="{{item.url}}" class="slide-image" width="100%" height="100%" />
      </swiper-item>
    </block>
  </swiper>
  <view class="dots">
    <block wx:for="{{imgUrls}}" wx:key="index">
      <view class="dot{{index == currentSwiper ? ' active' : ''}}"></view>
    </block>
  </view>



  <!--  客服  -->
  <view class='chat_peo'>
    <button open-type="contact" class='contacButton'>
      <image src='http://pjq0ww1cj.bkt.clouddn.com/chat_peo.png'></image>
    </button>
  </view>

</view>