forked from kesixin/QuestionWechatApp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
55 lines (55 loc) · 1.37 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
55
{
"pages": [
"pages/index/index",
"pages/select/index",
"pages/answer/index",
"pages/history/index",
"pages/answerErr/index",
"pages/answerInfo/index",
"pages/result/index",
"pages/analysis/index",
"pages/wrong/index",
"pages/wrongAnswer/index",
"pages/rank/index",
"pages/rankList/index",
"pages/my/index",
"pages/historyList/index",
"pages/feedback/index"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#2db7f5",
"navigationBarTitleText": "答题酷",
"navigationBarTextStyle": "#fff"
},
"tabBar": {
"selectedColor": "#2db7f5",
"color": "#909090",
"list": [
{
"text": "答题",
"iconPath": "images/answer.png",
"selectedIconPath": "images/answer-select.png",
"pagePath": "pages/select/index"
},
{
"text": "错题",
"iconPath": "images/wrong.png",
"selectedIconPath": "images/wrong-select.png",
"pagePath": "pages/wrong/index"
},
{
"text": "排名",
"iconPath": "images/sort.png",
"selectedIconPath": "images/sort-select.png",
"pagePath": "pages/rank/index"
},
{
"text": "我的",
"iconPath": "images/my.png",
"selectedIconPath": "images/my-select.png",
"pagePath": "pages/my/index"
}
]
}
}