forked from choloe/wxApp-cuteCalculator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
40 lines (40 loc) · 1.02 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
{
"pages":[
"pages/index/index",
"pages/function/function",
"pages/history/history",
"pages/interval/interval",
"pages/calender/calender"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#569597",
"navigationBarTitleText": "CuteCalculator",
"navigationBarTextStyle":"#fff"
},
"tabBar": {
"color": "#b7b7b7",
"selectedColor": "#569597",
"backgroundColor": "#f5f5f5",
"list": [
{
"pagePath": "pages/index/index",
"iconPath": "images/simple.png",
"selectedIconPath": "images/simple-selected.png",
"text": "基本运算"
},
{
"pagePath": "pages/function/function",
"iconPath": "images/all.png",
"selectedIconPath": "images/all-selected.png",
"text": "更多功能"
},
{
"pagePath": "pages/history/history",
"iconPath": "images/history.png",
"selectedIconPath": "images/history-selected.png",
"text": "历史记录"
}
]
}
}