1.首先,進入微信開發者工具,打開小程序項目文件,
2.在項目文件中,查找到app.json文件,并打開;
3.app.json文件打開后,在文件中添加以下代碼即可將新的頁面加入到底部菜單;
"tabBar": {"color": "#bfbfbf",
"selectedColor": "#d81e06",
"list": [
{
"pagePath": "pages/index/index", //跳轉頁面路徑
"text": "首 頁", //菜單欄名稱
"iconPath": "/images/m12.png", //圖片路徑
"selectedIconPath": "/images/m11.png" //圖片路徑
},
{
"pagePath": "pages/wode/wode", //跳轉頁面路徑
"text": "我 的", //菜單欄名稱
"iconPath": "/images/m13.png", //圖片路徑
"selectedIconPath": "/images/m14.png" //圖片路徑
}
]
}