-
Notifications
You must be signed in to change notification settings - Fork 15
/
app.json
48 lines (48 loc) · 1.21 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
44
45
46
47
48
{
"pages": [
"pages/index/index",
"pages/main/main",
"pages/main/createStars/createStars",
"pages/me/me",
"pages/me/wallet/wallet",
"pages/me/myPush/myPush",
"pages/message/myMessage/myMessage",
"pages/message/starsInfo/starsInfo",
"pages/message/message",
"pages/starsList/starsList",
"pages/me/ActiveStarsRank/ActiveStarsRank"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "white",
"navigationBarTitleText": "",
"navigationBarTextStyle": "black"
},
"tabBar": {
"selectedColor": "#14b392",
"borderStyle": "#dddee0",
"backgroundColor": "white",
"color": "gray",
"list": [
{
"text": "星球",
"pagePath": "pages/main/main",
"iconPath": "images/stars.png",
"selectedIconPath": "images/stars_sel.png"
},
{
"text": "动态",
"pagePath": "pages/message/message",
"iconPath": "images/message.png",
"selectedIconPath": "images/message_sel.png"
},
{
"text": "我",
"pagePath": "pages/me/me",
"iconPath": "images/me.png",
"selectedIconPath": "images/me_sel.png"
}
]
},
"debug": false
}