-
Notifications
You must be signed in to change notification settings - Fork 36
/
app.json
47 lines (43 loc) · 1.13 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
{
"pages":[
"pages/mail/mail",
"pages/index/index",
"pages/listDetail/listDetail",
"pages/mine/mine",
"pages/advise/advise",
"pages/index1/index1",
"pages/write/write",
"pages/newList/newList",
"pages/protocol/protocol",
"pages/about/about"
],
"window":{
"backgroundTextStyle":"dark",
"navigationBarBackgroundColor": "#FEFEFE",
"navigationBarTextStyle":"black",
"navigationBarTitleText": "信箱",
"enablePullDownRefresh": true
},
"tabBar": {
"backgroundColor":"#FAFAFA",
"borderStyle":"white",
"color":"#b2b2b2",
"selectedColor":"#1e1e1e",
"list": [{
"pagePath": "pages/index/index",
"selectedIconPath":"static/images/heart1.png",
"iconPath":"static/images/heart.png",
"text": "心情"
}, {
"pagePath": "pages/mail/mail",
"selectedIconPath":"static/images/email1.png",
"iconPath":"static/images/email.png",
"text": "信箱"
}, {
"pagePath": "pages/mine/mine",
"selectedIconPath":"static/images/mine1.png",
"iconPath":"static/images/mine.png",
"text": "我"
}]
}
}