<view class="wv-swiper {{customClass}}" style="height: {{height}};">
  <view class="wv-swiper-container" 
        bindtouchstart="onTouchStart" 
        bindtouchmove="onTouchMove" 
        bindtouchend="onTouchEnd"
        bindtouchcancel="onTouchEnd">
    <slot></slot>
  </view>
  
  <!-- 指示点 -->
  <view class="wv-swiper-indicator" wx:if="{{indicatorDots && itemCount > 1}}">
    <view class="wv-swiper-indicator-item {{index === currentIndex ? 'active' : ''}}" 
          wx:for="{{itemCount}}" 
          wx:key="index"
          style="background-color: {{index === currentIndex ? indicatorActiveColor : indicatorColor}};"></view>
  </view>
</view>
