-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathapp.json
54 lines (53 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
46
47
48
49
50
51
52
53
54
{
"pages": [
"pages/index/index",
"pages/logs/logs",
"pages/answerPage/answerPage",
"pages/askQuestion/askQuestion",
"pages/blackList/blackList",
"pages/mainStage/mainStage",
"pages/message/message",
"pages/myFollow/myFollow",
"pages/myInfo/myInfo",
"pages/myQandA/myQandA",
"pages/questionPage/questionPage",
"pages/reviewPage/reviewPage",
"pages/userInfo/userInfo",
"pages/answer/answer"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "WeChat",
"navigationBarTextStyle": "black"
},
"tabBar": {
"position": "bottom",
"color": "#626567",
"selectedColor": "#2A8CE5",
"backgroundColor": "#FBFBFB",
"borderStyle": "white",
"list": [
{
"pagePath": "pages/mainStage/mainStage",
"text": "首页"
},
{
"pagePath": "pages/message/message",
"text": "动态"
},
{
"pagePath": "pages/myQandA/myQandA",
"text": "我的问答"
},
{
"pagePath": "pages/myFollow/myFollow",
"text": "我的关注"
},
{
"pagePath": "pages/myInfo/myInfo",
"text": "个人资料"
}
]
}
}