在app.json中添加 “tabBar”

    1. //创建TabBar
    2. "tabBar": {
    3. "list": [{
    4. //跳转的路径
    5. "pagePath": "pages/home/home",
    6. //名称
    7. "text": "首页",
    8. //使用的图片
    9. "iconPath": "/static/rv_img1.jpg",
    10. //选中的图片
    11. "selectedIconPath": "/static/rv_img20.jpg"
    12. },
    13. {
    14. "pagePath": "pages/index/index",
    15. "text": "我的",
    16. "iconPath": "/static/rv_img2.jpg",
    17. "selectedIconPath": "/static/rv_img20.jpg"
    18. }]
    19. }

    效果图:
    image.png