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

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>