-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.json
33 lines (33 loc) · 836 Bytes
/
app.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"pages": [
"pages/main-page/main-page",
"pages/picture/picture"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "WeChat",
"navigationBarTextStyle": "black",
"backgroundColor": "#cccccc"
},
"sitemapLocation": "sitemap.json",
"tabBar": {
"color": "#a9b7b7",
"selectedColor": "#000000",
"borderStyle": "black",
"list": [
{
"selectedIconPath": "assets/img/icon-book.png",
"iconPath": "assets/img/icon-book.png",
"pagePath": "pages/main-page/main-page",
"text": "日记"
},
{
"selectedIconPath": "assets/img/icon-pic.png",
"iconPath": "assets/img/icon-pic.png",
"pagePath": "pages/picture/picture",
"text": "相册"
}
]
}
}