index.wxml 711 B

12345678910111213
  1. <van-sticky offset-top="{{ 0 }}">
  2. <scroll-view scroll-x enable-flex class="scroll" scroll-left='{{scrollLeft}}' scroll-with-animation enable-passive>
  3. <view class="item {{active==index?'active':''}}" id="{{active==index?'active'+index:''}}" wx:for="{{list}}" wx:key="index" data-index="{{index}}" bindtap="tabsChenge">
  4. <view class="icon" wx:if="{{item.icon}}"></view>
  5. <view wx:else class="num line-1">{{item.num}}</view>
  6. <view class="label line-1">{{item.label}}</view>
  7. </view>
  8. </scroll-view>
  9. </van-sticky>
  10. <view class="slot-box" bindtouchstart="myTouchStart" bindtouchmove="myTouchMove">
  11. <slot name='{{list[active].label}}' />
  12. <slot />
  13. </view>