运维小程序
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

index.wxml 531B

1234567891011121314151617181920
  1. <!-- custom-tab-bar/index.wxml -->
  2. <view class="tab-bar">
  3. <view
  4. class="tab-item"
  5. wx:for="{{tabList}}"
  6. wx:key="pagePath"
  7. bindtap="switchTab"
  8. data-path="{{item.pagePath}}"
  9. >
  10. <!-- 图标:根据选中状态切换路径 -->
  11. <image
  12. class="icon"
  13. src="{{currentPath === item.pagePath ? item.selectedIconPath : item.iconPath}}"
  14. mode="widthFix"
  15. ></image>
  16. <view class="text {{currentPath === item.pagePath ? 'active' : ''}}">
  17. {{item.text}}
  18. </view>
  19. </view>
  20. </view>