index.wxml 1.2 KB

1234567891011121314151617181920212223242526272829
  1. <view class="weui-tabs">
  2. <view class="weui-tabs-bar__wrp">
  3. <scroll-view scroll-x scroll-into-view="item_{{currentView}}" scroll-with-animation="{{animation}}">
  4. <view class="weui-tabs-bar__content ">
  5. <block wx:for="{{tabs}}" wx:key="title">
  6. <view id="item_{{index}}" class="weui-tabs-bar__item"
  7. style="background-color: {{tabBackgroundColor}}; color: {{activeTab === index ? tabActiveTextColor : tabInactiveTextColor}};"
  8. bindtap="handleTabClick" data-index="{{index}}">
  9. <view class="weui-tabs-bar__title {{tabClass}} {{activeTab === index ? activeClass : ''}}"
  10. style="border-bottom-color: {{activeTab === index ? tabUnderlineColor : 'transparent'}}">
  11. <text class="">{{item.title}}</text>
  12. </view>
  13. </view>
  14. </block>
  15. </view>
  16. </scroll-view>
  17. </view>
  18. <swiper class="{{swiperClass}}" current="{{activeTab}}" duration="{{duration}}" bindchange="handleSwiperChange"
  19. style="height: {{swiperHeight}}rpx;">
  20. <swiper-item wx:for="{{tabs}}" wx:key="title">
  21. <view style="height: {{swiperHeight}}rpx;">
  22. <slot name="tab-content-{{index}}"></slot>
  23. </view>
  24. </swiper-item>
  25. </swiper>
  26. </view>