miniprogram-demo/app.json

35 lines
885 B
JSON
Raw Normal View History

2020-12-07 09:48:09 +08:00
{
2020-12-07 11:00:15 +08:00
"pages": [
2020-12-07 09:48:09 +08:00
"pages/component/index/index",
2020-12-07 11:14:55 +08:00
"pages/component/view/view",
2020-12-07 09:48:09 +08:00
"pages/API/index/index"
],
2020-12-07 11:00:15 +08:00
"window": {
"backgroundTextStyle": "light",
2020-12-07 09:48:09 +08:00
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "Weixin",
2020-12-07 11:00:15 +08:00
"navigationBarTextStyle": "black"
2020-12-07 09:48:09 +08:00
},
"style": "v2",
"sitemapLocation": "sitemap.json",
"tabBar": {
2020-12-07 11:00:15 +08:00
"color": "#7A7E83",
2020-12-07 09:48:09 +08:00
"selectedColor": "#3cc51f",
2020-12-07 11:00:15 +08:00
"borderStyle": "black",
"backgroundColor": "#F7F7F7",
2020-12-07 09:48:09 +08:00
"list": [
{
"pagePath": "pages/component/index/index",
"iconPath": "image/icon_component.png",
"selectedIconPath": "image/icon_component_HL.png",
"text": "组件"
},
{
"pagePath": "pages/API/index/index",
"iconPath": "image/icon_API.png",
"selectedIconPath": "image/icon_API_HL.png",
"text": "接口"
}
]
}
2020-12-07 11:00:15 +08:00
}