微信小程序入门笔记4(回顾app.josn)
Posted 晨沉宸辰
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序入门笔记4(回顾app.josn)相关的知识,希望对你有一定的参考价值。
一、页面配制
二、全局配置
三、代码汇总
{
"pages":[
"pages/index/index",
"pages/logs/logs",
"pages/index2/index2"
],
"window":{
"backgroundTextStyle":"dark",
"navigationBarBackgroundColor": "#0094ff",
"navigationBarTitleText": "全局首页",
"navigationBarTextStyle":"white",
"enablePullDownRefresh":true,
"pageOrientation":"auto",
"navigationStyle":"default"
},
"tabBar": {
"color": "bark",
"list": [
{
"pagePath": "pages/index/index",
"text":"首页",
"iconPath": "icons/first.png",
"selectedIconPath": "icons/first_1.png"
},
{
"pagePath": "pages/logs/logs",
"text":"日志",
"iconPath": "icons/second.png",
"selectedIconPath": "icons/second_1.png"
}
]
},
"style": "v2",
"sitemapLocation": "sitemap.json"
}
以上是关于微信小程序入门笔记4(回顾app.josn)的主要内容,如果未能解决你的问题,请参考以下文章