-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
45 lines (45 loc) · 1.24 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
{
"pages":[
"pages/index/index",
"pages/receipt/receipt",
"pages/public/public",
"pages/noticePublic/noticePublic",
"pages/activityPublic/activityPublic",
"pages/votePublic/votePublic",
"pages/voteInfo/voteInfo",
"pages/noticeInfo/noticeInfo",
"pages/activityInfo/activityInfo",
"pages/choseInfoTemplate/choseInfoTemplate",
"pages/votersInfo/votersInfo"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#000",
"navigationBarTitleText": "群里有事",
"navigationBarTextStyle":"white",
"enablePullDownRefresh":true
},
"tabBar": {
"color":"#666",
"backgroundColor":"#eee",
"selectedColor":"#000",
"borderStyle": "white",
"list": [{
"pagePath": "pages/index/index",
"text": "我发起的",
"iconPath": "assets/imgs/tab1.png",
"selectedIconPath": "assets/imgs/tab1.png"
},{
"pagePath": "pages/receipt/receipt",
"text": "我参与的",
"iconPath": "assets/imgs/tab2.png",
"selectedIconPath": "assets/imgs/tab2.png"
},
{
"pagePath": "pages/public/public",
"text": "发布",
"iconPath": "assets/imgs/tab3.png",
"selectedIconPath": "assets/imgs/tab3.png"
}]
}
}