-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
50 lines (50 loc) · 1.45 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/index",
"pages/new/new",
"pages/logs/logs",
"pages/center/center"
],
"window":{
"backgroundTextStyle":"light",
"backgroundColor": "#FAFAFA",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "饭友",
"navigationBarTextStyle":"black",
"enablePullDownRefresh": true,
"backgroundTextStyle": "dark"
},
"debug": true,
"tabBar": {
"color": "#1d1d1d",
"selectedColor": "#fa4646",
"borderStyle": "white",
"backgroundColor": "#ffffff",
"list": [{
"pagePath": "pages/index/index",
"iconPath": "dist/images/icons/cooker.png",
"selectedIconPath": "dist/images/icons/[email protected]",
"text": " 吃圈"
}, {
"pagePath": "pages/logs/logs",
"iconPath": "dist/images/icons/people.png",
"selectedIconPath": "dist/images/icons/[email protected]",
"text": "吃友"
}, {
"pagePath": "pages/new/new",
"iconPath": "dist/images/icons/add.png",
"selectedIconPath": "dist/images/icons/[email protected]",
"text": "发布邀请"
}, {
"pagePath": "pages/group/group",
"iconPath": "dist/images/icons/message.png",
"selectedIconPath": "dist/images/icons/[email protected]",
"text": "消息"
}, {
"pagePath": "pages/center/center",
"iconPath": "dist/images/icons/home.png",
"selectedIconPath": "dist/images/icons/[email protected]",
"text": "我"
}]
}
}