-
Notifications
You must be signed in to change notification settings - Fork 7
/
app.json
54 lines (54 loc) · 1.51 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
51
52
53
54
{
"pages": [
"pages/index/index",
"pages/Comment/Comment",
"pages/Questionnaire/Questionnaire",
"pages/AddItem/AddItem",
"pages/ParticipateTask/ParticipateTask",
"pages/userInfo/userInfo",
"pages/Detail/Detail",
"pages/MessageDetail/MessageDetail",
"pages/Message/Message",
"pages/CollectList/CollectList",
"pages/AddedItems/AddedItems",
"pages/SearchResult/SearchResult"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": " 闲得一币",
"navigationBarTextStyle": "black"
},
"tabBar": {
"list": [
{
"text": "首页",
"iconPath": "images/icons/home.png",
"selectedIconPath": "images/icons/home_selected.png",
"pagePath": "pages/index/index"
},
{
"text": "发布",
"iconPath": "images/icons/add.png",
"selectedIconPath": "images/icons/add_selected.png",
"pagePath": "pages/AddItem/AddItem"
},
{
"text": "消息",
"iconPath": "images/icons/message.png",
"selectedIconPath": "images/icons/message_selected.png",
"pagePath": "pages/Message/Message"
},
{
"text": "我的",
"iconPath": "images/icons/user.png",
"selectedIconPath": "images/icons/user_selected.png",
"pagePath": "pages/userInfo/userInfo"
}
],
"backgroundColor": "#fff",
"color": "#404969",
"selectedColor": "#ff8788"
},
"sitemapLocation": "sitemap.json"
}