赞
踩
很多人都是去到组件里面去找,组件里面是没有的。需要到框架里面的全局配置里面去找。
在app.json里面配置
- {
- "pages": [
- "pages/index/index",
- "pages/about/about",
- "pages/other/other"
- ],
- "window": {
- "backgroundTextStyle": "light",
- "navigationBarBackgroundColor": "#000000",
- "navigationBarTitleText": "微信小程序",
- "navigationBarTextStyle": "#fff"
- },
- "tabBar": {
- "list": [
- {
- "pagePath": "pages/index/index",
- "text": "首页"
- },
- {
- "pagePath": "pages/about/about",
- "text": "关于"
- },
- {
- "pagePath": "pages/other/other",
- "text": "其他"
- }
- ],
- "selectedColor": "#803343"
- }
- }
![](https://csdnimg.cn/release/blogv2/dist/pc/img/newCodeMoreWhite.png)
希望能给大家带来帮助,更多的属性自己去看,里面介绍的很详细。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。