微信小程序tabbar頁面是擁有底部導航欄的頁面,實現方法:
在app.json中添加以下代碼:
"tabBar": {"list": [
{
"pagePath": "pages/home/home",
"iconPath":"images/tabbar/component.png",
"selectedIconPath": "images/tabbar/component_cur.png",
"text": "首頁"
},
{
"pagePath": "pages/register/register",
"iconPath": "images/tabbar/plugin.png",
"selectedIconPath": "images/tabbar/plugin_cur.png",
"text": "發布"
},
{
"pagePath": "pages/register/register",
"iconPath": "images/tabbar/about.png",
"selectedIconPath": "images/tabbar/about_cur.png",
"text": "我"
}
]
},