tabs.wxml 413 B

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