foot.wxml 1.4 KB

1234567891011121314151617181920212223242526272829
  1. <view class="foot">
  2. <van-tabbar active="{{ active }}" bind:change="tabPath">
  3. <van-tabbar-item>
  4. <image slot="icon" src="{{ one.normal }}" mode="aspectFit" style="width: 24px; height: 26px;" />
  5. <image slot="icon-active" src="{{ one.active }}" mode="aspectFit" style="width: 24px; height: 26px;" />
  6. 首页
  7. </van-tabbar-item>
  8. <van-tabbar-item>
  9. <image slot="icon" src="{{ two.normal }}" mode="aspectFit" style="width: 24px; height: 26px;" />
  10. <image slot="icon-active" src="{{ two.active }}" mode="aspectFit" style="width: 24px; height: 26px;" />
  11. 查询比赛
  12. </van-tabbar-item>
  13. <van-tabbar-item>
  14. <image slot="icon" src="{{ three.normal }}" mode="aspectFit" style="width: 24px; height: 26px;" />
  15. <image slot="icon-active" src="{{ three.active }}" mode="aspectFit" style="width: 24px; height: 26px;" />
  16. 比赛管理
  17. </van-tabbar-item>
  18. <van-tabbar-item>
  19. <image slot="icon" src="{{ four.normal }}" mode="aspectFit" style="width: 24px; height: 26px;" />
  20. <image slot="icon-active" src="{{ four.active }}" mode="aspectFit" style="width: 24px; height: 26px;" />
  21. 查找团队
  22. </van-tabbar-item>
  23. <van-tabbar-item>
  24. <image slot="icon" src="{{ five.normal }}" mode="aspectFit" style="width: 24px; height: 26px;" />
  25. <image slot="icon-active" src="{{ five.active }}" mode="aspectFit" style="width: 24px; height: 26px;" />
  26. 我的
  27. </van-tabbar-item>
  28. </van-tabbar>
  29. </view>