forked from weiwei6666/library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
43 lines (43 loc) · 1.05 KB
/
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
34
35
36
37
38
39
40
41
42
43
{
"pages": [
"pages/home/suggestions/suggestions",
"pages/home/home",
"pages/user/user",
"pages/mySeat/mySeat",
"pages/user/userInfo/userInfo"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "图书馆",
"navigationBarTextStyle": "black",
"enablePullDownRefresh": false
},
"tabBar": {
"color": "grey",
"selectedColor": "#436EEE",
"backgroundColor": "white",
"borderStyle": "white",
"list": [
{
"pagePath": "pages/home/home",
"text": "首页",
"iconPath": "./icon/13.png",
"selectedIconPath": "./icon/16.png"
},
{
"pagePath": "pages/mySeat/mySeat",
"text": "我的座位",
"iconPath": "./icon/14.png",
"selectedIconPath": "./icon/17.png"
},
{
"pagePath": "pages/user/user",
"text": "个人",
"iconPath": "./icon/15.png",
"selectedIconPath": "./icon/18.png"
}
]
},
"sitemapLocation": "sitemap.json"
}