index.wxml 705 B

1234567891011
  1. <view class="wux-class {{ classes.wrap }}" style="{{ extStyle }}">
  2. <scroll-view scroll-y scroll-top="{{ scrollTop }}" bindscroll="onScroll" style="{{ extStyle }}">
  3. <slot></slot>
  4. <view class="{{ classes.nav }}" wx:if="{{ sections.length > 0 }}" catchtouchstart="onTouchStart" catchtouchmove="onTouchMove" catchtouchend="onTouchEnd">
  5. <block wx:for="{{ sections }}" wx:key="">
  6. <view class="{{ classes.navItem }}" data-index="{{ index }}" data-name="{{ item.name }}">{{ item.name }}</view>
  7. </block>
  8. </view>
  9. <div class="{{ classes.indicator }}" wx:if="{{ showIndicator && moving }}">{{ currentName }}</div>
  10. </scroll-view>
  11. </view>