运维小程序
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

index.wxml 933B

12345678910111213141516171819202122232425262728
  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>
  21. <!-- 调试信息(可选,发布前删除) -->
  22. <view wx:if="{{false}}" style="position: fixed; top: 50px; left: 0; z-index: 999; background: white; padding: 10px; font-size: 12px;">
  23. 当前路径:{{currentPath}}
  24. <view wx:for="{{tabList}}" wx:key="pagePath">
  25. {{item.text}}: {{item.pagePath}} → {{currentPath === item.pagePath ? '匹配' : '不匹配'}}
  26. </view>
  27. </view>