1. 程式人生 > >微信小程式-tabBar

微信小程式-tabBar

在app.json中新增:

  "tabBar": {
    "list": [
      {
        "pagePath": "pages/index/index",
        "text": "首頁",
        "iconPath": "images/index.png",
        "selectedIconPath": "images/index-hover.png"
      },
      {
        "pagePath": "pages/join/join",
        "text": "加入",
        "iconPath": "images/join.png",
        "selectedIconPath": "images/join-hover.png"
      }
    ]
  }

 效果: