app.json
995 字节
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
{
"pages": [
"pages/index/index",
"pages/start/start",
"pages/logs/logs",
"pages/clock/clock",
"pages/my/my"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#3FA9F5",
"navigationBarTitleText": "科学队长实验室",
"navigationBarTextStyle": "white"
},
"tabBar": {
"color": "#6F6F6F",
"selectedColor": "#5AB7F9",
"borderStyle": "black",
"backgroundColor": "#fff",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "/images/home0.png",
"selectedIconPath": "/images/home1.png"
},
{
"pagePath": "pages/clock/clock",
"text": "打卡",
"iconPath": "/images/clock0.png",
"selectedIconPath": "/images/clock1.png"
},
{
"pagePath": "pages/my/my",
"text": "我的",
"iconPath": "/images/my0.png",
"selectedIconPath": "/images/my1.png"
}
]
}
}