赞
踩
参考文档:https://developers.weixin.qq.com/miniprogram/dev/reference/configuration/app.html
记录当前小程序所有页面的存放路径
2.1全局设置小程序的外观
tabBar只能配置最多5个、至少2个的tab页签。
注意:顶部tabBar不显示icon,只有底部显示
全局tabBar配置代码(在app.js进行配置):
"tabBar": { "list": [ { "pagePath": "pages/home/home", "text": "首页", "iconPath": "/图片路径", "selectedIconPath": "/被选中的图片路径" }, { "pagePath": "pages/message/message", "text": "消息", "iconPath": "/图片路径", "selectedIconPath": "/被选中的图片路径" } ] }
若需要页面配置项,可以进行页面中的json配置(页面配置优先全局配置)
页面配置:
https://developers.weixin.qq.com/miniprogram/dev/reference/configuration/page.html
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。