1234567891011121314151617181920212223242526272829303132333435363738 |
- <view class="weui-vtabs">
- <view class="weui-vtabs-bar__wrp {{tabBarClass}}">
- <scroll-view
- scroll-y
- class="weui-vtabs-bar__scrollview"
- scroll-into-view="weui-vtabs-item__{{currentView}}"
- >
- <view class="weui-vtabs-bar__content">
- <block wx:for="{{vtabs}}" wx:key="title">
- <view
- id="weui-vtabs-item__{{index}}"
- class="weui-vtabs-bar__item"
- data-index="{{index}}"
- style="background-color: {{activeTab === index ? tabActiveBgColor : tabInactiveBgColor}}; color: {{activeTab === index ? tabActiveTextColor : tabInactiveTextColor}}; border-left-color: {{activeTab === index ? tabLineColor : tabInactiveBgColor}}"
- bindtap="handleTabClick"
- >
- <view class="weui-vtabs-bar__title {{activeTab === index ? activeClass : ''}}">
- <text class="">{{item.title}}</text>
- </view>
- </view>
- </block>
- </view>
- </scroll-view>
- </view>
- <view class="weui-vtabs-content__wrp">
- <scroll-view
- scroll-y
- class="weui-vtabs-content__scrollview"
- scroll-top="{{contentScrollTop}}"
- scroll-with-animation="{{animation}}"
- bindscroll="handleContentScroll"
- >
- <view class="weui-vtabs-content">
- <slot ></slot>
- </view>
- </scroll-view>
- </view>
- </view>
|