index.wxml 662 B

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