index.wxml 1.3 KB

1234567891011121314151617181920
  1. <!-- components/diy-tabs/index.wxml -->
  2. <scroll-view class="tabs_top" style="background: {{style.tabsBackground}}; height: {{style.tabsHeight * 2}}rpx;" scroll-x enable-flex>
  3. <view class="selected " style="margin: {{style.selectedX * 2}}rpx {{style.selectedY * 2}}rpx;">
  4. <block>
  5. <view class="tab" style="height: {{selected == item.id ? style.activeHeight + 'rpx' : ''}}; background: {{selected == item.id ? style.activebgColor : '' }}; color:{{selected == item.id ? style.activeColor: ''}}; padding: {{selected == item.id ? 0 + 'rpx' + ' ' + style.activePadding + 'rpx' : ''}}; border-radius: {{style.tabBorderRadius * 2}}rpx; font-size: {{style.tabFontSize * 2}}rpx; color: {{style.tabColor}}; margin-right: {{style.tabMarginLeft * 2}}rpx; " wx:for="{{scrollItem}}" wx:for-item="item" wx:key="id" data-item="{{item.id}}" bind:tap="selected">
  6. {{item.name}}
  7. </view>
  8. </block>
  9. </view>
  10. </scroll-view>
  11. <!-- 全部 -->
  12. <block wx:if="{{selected == 0}}">全部</block>
  13. <!-- 面部护理 -->
  14. <block wx:if="{{selected == 1}}">面部护理</block>
  15. <!-- 精致彩 -->
  16. <block wx:if="{{selected == 2}}">精致彩</block>
  17. <!-- 迷人香水 -->
  18. <block wx:if="{{selected == 3}}">迷人香水</block>
  19. <!-- 洗发护发 -->
  20. <block wx:if="{{selected == 4}}">洗发护发</block>