-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
36 lines (36 loc) · 1 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
{
"pages": [
"pages/index/index",
"pages/scan/scan"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "作业统计助手",
"navigationBarTextStyle": "black",
"backgroundColor": "#f6f6f6",
"enablePullDownRefresh": false
},
"tabBar": {
"selectedColor": "#0066FF",
"backgroundColor": "#f6f6f6",
"borderStyle": "white",
"list": [{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "asserts/icons/home.png",
"selectedIconPath": "asserts/icons/home-active.png"
},{
"pagePath": "pages/scan/scan",
"text": "扫码",
"iconPath": "asserts/icons/scan.png",
"selectedIconPath": "asserts/icons/scan-active.png"
},{
"pagePath": "pages/index/index",
"text": "统计",
"iconPath": "asserts/icons/chart-pie-alt.png",
"selectedIconPath": "asserts/icons/chart-pie-alt-active.png"
}]
},
"sitemapLocation": "sitemap.json"
}