index.wxml 807 B

1234567891011121314151617
  1. <view class="main">
  2. <view class="one" style="background:{{tabs.bgColor||'#f9f9f9'}};">
  3. <scroll-view class="scrollView" scroll-x="true">
  4. <view class="list" wx:for="{{tabs.menu}}" wx:key="item" wx:for-item="item" wx:for-index="index" bindtap="tabsChange" data-item="{{item}}" style="background:{{tabs.active==item.active?tabs.acbgColor||'#ffffff':''}};">
  5. <text style="color: {{tabs.active==item.active?tabs.actxtColor||'#000000':tabs.txtColor||'#999999'}};">{{item.title}}</text>
  6. </view>
  7. </scroll-view>
  8. </view>
  9. <slot></slot>
  10. </view>
  11. <!--
  12. 默认背景颜色,选中背景颜色,默认文字颜色,选中文字颜色
  13. // bgColor: '#f9f9f9',
  14. // acbgColor: '#ffffff',
  15. // txtColor: '#999999',
  16. // actxtColor: '#000000'
  17. -->