tabs.wxml 387 B

123456789101112131415
  1. <view>
  2. <scroll-view class="scroll-view_H" scroll-x="true" style="width: 100%">
  3. <view
  4. wx:for="{{tabs}}"
  5. wx:key="tabsIndex"
  6. wx:for-index="tabsIndex"
  7. class="scroll-view-item_H {{tabsIndex==secIndex ? 'active':''}}"
  8. bindtap="secTabs"
  9. data-id="{{tabsIndex}}"
  10. data-item="{{item}}">
  11. {{item.name}}
  12. </view>
  13. </scroll-view>
  14. </view>