forked from biglemontree/TOWAY
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
37 lines (36 loc) · 988 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
34
35
36
37
{
"pages":[
"pages/my/my",
"pages/index/index",
"pages/details/details",
"pages/join/join",
"pages/release/release"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "WeChat",
"navigationBarTextStyle":"black"
},
"tabBar": {
"color": "#9B9DB1",
"selectedColor": "#3cc51f",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [{
"pagePath": "pages/index/index",
"text": "活动",
"iconPath": "images/tab_message_normal.png",
"selectedIconPath": "images/tab_message_selected.png"
},{
"pagePath": "pages/release/release",
"iconPath": "images/tab_dynamic_normal.png",
"selectedIconPath": "images/tab_dynamic_normal.png"
},{
"pagePath": "pages/my/my",
"text": "我的",
"iconPath": "images/tab_contact_normal.png",
"selectedIconPath": "images/tab_contact_selected.png"
}]
}
}