小程序 app.json 文件配置
Posted 亮子zl
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小程序 app.json 文件配置相关的知识,希望对你有一定的参考价值。
头部配置
"window":
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "微信接口",
"navigationBarTextStyle": "black"
,
//底部导航 在app.json
"tabBar":
"selectedColor": "#D53e37", //选中的文字色
"backgroundColor": "#f5f5f5", //低部背景色
"borderStyle": "black", //边框色
"list": [
"text":"电影",
"pagePath": "pages/index/index", //一定要是当前页面
"iconPath": "",
"selectedIconPath": ""
,
"text":"电影a",
"pagePath": "pages/logs/logs", //不能相同
"iconPath": "",
"selectedIconPath": ""
]
,
将指定小程序页面设置为首页
"entryPagePath": "pages/iphone/iphone",
以上是关于小程序 app.json 文件配置的主要内容,如果未能解决你的问题,请参考以下文章