index.wxml 1.1 KB

1234567891011121314151617181920
  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" style="background-color: {{tabBackgroundColor}}; color: {{activeTab === index ? tabActiveTextColor : tabInactiveTextColor}};" bindtap="handleTabClick" data-index="{{index}}">
  7. <view class="weui-tabs-bar__title {{tabClass}} {{activeTab === index ? activeClass : ''}}" style="border-bottom-color: {{activeTab === index ? tabUnderlineColor : 'transparent'}}">
  8. <text class="">{{item.title}}</text>
  9. </view>
  10. </view>
  11. </block>
  12. </view>
  13. </scroll-view>
  14. </view>
  15. <swiper class="{{swiperClass}}" current="{{activeTab}}" duration="{{duration}}" bindchange="handleSwiperChange">
  16. <swiper-item wx:for="{{tabs}}" wx:key="title">
  17. <slot name="tab-content-{{index}}"></slot>
  18. </swiper-item>
  19. </swiper>
  20. </view>