index.wxml 745 B

1234567891011121314
  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}}">
  4. <text class="iconfont {{item.icon}}" />
  5. </view>
  6. <view wx:else class="num line-1">{{item.num}}</view>
  7. <view class="label line-1">{{language[item.label]||item.label}}</view>
  8. </view>
  9. </scroll-view>
  10. <view class="slot-box" bindtouchstart="myTouchStart" bindtouchmove="myTouchMove">
  11. <slot name='padtop' />
  12. <slot name='{{list[active].label}}' />
  13. <slot />
  14. </view>