forked from codedrinker/jiuask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
50 lines (50 loc) · 1.36 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
49
50
{
"pages": [
"pages/index",
"pages/question/post",
"pages/question/list",
"pages/notification/list",
"pages/profile/index",
"pages/gift/list"
],
"window": {
"navigationBarTitleText": "久问",
"backgroundColor": "#F6F6F6",
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#405f80",
"navigationBarTextStyle": "white"
},
"tabBar": {
"selectedColor": "#3c506f",
"list": [
{
"navigationBarTitleText": "首页",
"pagePath": "pages/question/list",
"text": "首页",
"iconPath": "images/index-default.png",
"selectedIconPath": "images/index-selected.png"
},
{
"navigationBarTitleText": "通知",
"pagePath": "pages/notification/list",
"text": "通知",
"iconPath": "images/notification-default.png",
"selectedIconPath": "images/notification-selected.png"
},
{
"navigationBarTitleText": "礼品",
"pagePath": "pages/gift/list",
"text": "礼品",
"iconPath": "images/gift-default.png",
"selectedIconPath": "images/gift-selected.png"
},
{
"navigationBarTitleText": "我",
"pagePath": "pages/profile/index",
"text": "我",
"iconPath": "images/me-default.png",
"selectedIconPath": "images/me-selected.png"
}
]
}
}