-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathapp.json
41 lines (38 loc) · 986 Bytes
/
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
{
"pages":[
"pages/home/home",
"pages/quiz/quiz",
"pages/replyMng/replyMng",
"pages/my/my",
"pages/question/question",
"pages/welcome/welcome"
],
"tabBar": {
"color":"#afb2b9",
"backgroundColor":"#fff",
"selectedColor":"#18b7ee",
"borderStyle":"white",
"list": [{
"pagePath": "pages/home/home",
"text": "首页",
"iconPath":"images/icon-home.png",
"selectedIconPath":"images/icon-home-act.png"
}, {
"pagePath": "pages/quiz/quiz",
"text": "提问",
"iconPath":"images/icon-quiz.png",
"selectedIconPath":"images/icon-quiz-act.png"
}, {
"pagePath": "pages/my/my",
"text": "我的",
"iconPath":"images/icon-my.png",
"selectedIconPath":"images/icon-my-act.png"
}]
},
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#18b7ee",
"navigationBarTitleText": "UI快问",
"navigationBarTextStyle":"white"
}
}