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"//图片路径
}
]
}
本文来源:https://www.yuntue.com/post/79923.html | 云服务器网,转载请注明出处!