当前位置:   article > 正文

uniapp中底部tabbar设置_uni-app替换tabbar

uni-app替换tabbar

一、目的:设置底部tabbar

二、设置tabbar

  1. 在page.json文件下进行配置

  1. tabbar与pages、globalStyle等同级书写

  1. color:默认文字颜色

selectedColor:选中的文字颜色

  1. list是数组,里面的tabbar至少2个至多5个

  1. pagepath:页面的路径

iconPath:默认图标路径

selectedIconPath选中的图标路径

text文字的内容

三、代码展示:

代码:

  1. "tabBar": {
  2. "color": "#000000",
  3. "selectedColor": "D81E06",
  4. "list": [
  5. {
  6. "pagePath": "pages/index/index",
  7. "iconPath": "static/tabbar/home.png",
  8. "selectedIconPath": "static/tabbar/home-active.png",
  9. "text": "消息"
  10. },
  11. {
  12. "pagePath": "pages/list/list",
  13. "iconPath": "static/tabbar/cate.png",
  14. "selectedIconPath": "static/tabbar/cate-active.png",
  15. "text": "列表"
  16. },
  17. {
  18. "pagePath": "pages/shopCart/shopCart",
  19. "iconPath": "static/tabbar/cart.png",
  20. "selectedIconPath": "static/tabbar/cart-active.png",
  21. "text": "购物车"
  22. },
  23. {
  24. "pagePath": "pages/my/my",
  25. "iconPath": "static/tabbar/my.png",
  26. "selectedIconPath": "static/tabbar/my-active.png",
  27. "text": "我的"
  28. }
  29. ]
  30. },

四、结果展示:

五、具体配置项分享:

见官网展示:

https://uniapp.dcloud.net.cn/collocation/pages.html#tabbar

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/245810
推荐阅读
相关标签
  

闽ICP备14008679号