-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
33 lines (33 loc) · 973 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/index/launched",
"pages/index/participated-in",
"pages/index/help",
"pages/activity/activity",
"pages/new-activity/new-activity"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "几时得闲",
"navigationBarTextStyle":"black"
},
"tabBar": {
"list": [{
"pagePath": "pages/index/launched",
"text": "我发起的",
"iconPath": "icons/tab-launched-normal.png",
"selectedIconPath": "icons/tab-launched-selected.png"
}, {
"pagePath": "pages/index/participated-in",
"text": "我参与的",
"iconPath": "icons/tab-participated-in-normal.png",
"selectedIconPath": "icons/tab-participated-in-selected.png"
}, {
"pagePath": "pages/index/help",
"text": "如何使用",
"iconPath": "icons/tab-help-normal.png",
"selectedIconPath": "icons/tab-help-selected.png"
}]
}
}