index.wxml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <view class="weui-vtabs">
  2. <view class="weui-vtabs-bar__wrp {{tabBarClass}}">
  3. <scroll-view
  4. scroll-y
  5. class="weui-vtabs-bar__scrollview"
  6. scroll-into-view="weui-vtabs-item__{{currentView}}"
  7. >
  8. <view class="weui-vtabs-bar__content">
  9. <block wx:for="{{vtabs}}" wx:key="title">
  10. <view
  11. id="weui-vtabs-item__{{index}}"
  12. class="weui-vtabs-bar__item"
  13. data-index="{{index}}"
  14. style="background-color: {{activeTab === index ? tabActiveBgColor : tabInactiveBgColor}}; color: {{activeTab === index ? tabActiveTextColor : tabInactiveTextColor}}; border-left-color: {{activeTab === index ? tabLineColor : tabInactiveBgColor}}"
  15. bindtap="handleTabClick"
  16. >
  17. <view class="weui-vtabs-bar__title {{activeTab === index ? activeClass : ''}}">
  18. <text class="">{{item.title}}</text>
  19. </view>
  20. </view>
  21. </block>
  22. </view>
  23. </scroll-view>
  24. </view>
  25. <view class="weui-vtabs-content__wrp">
  26. <scroll-view
  27. scroll-y
  28. class="weui-vtabs-content__scrollview"
  29. scroll-top="{{contentScrollTop}}"
  30. scroll-with-animation="{{animation}}"
  31. bindscroll="handleContentScroll"
  32. >
  33. <view class="weui-vtabs-content">
  34. <slot ></slot>
  35. </view>
  36. </scroll-view>
  37. </view>
  38. </view>