-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
48 lines (45 loc) · 1.16 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
{
"pages": [
"pages/login/login",
"pages/createIssue/createIssue",
"pages/PersonalCenter/PersonalCenter",
"pages/service/service"
],
"window": {
"backgroundColor": "#eeeeee",
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#494cff",
"navigationBarTitleText": "IssueStore",
"navigationBarTextStyle": "white",
"enablePullDownRefresh": true
},
"tabBar": {
"color": "#707070",
"selectedColor": "#1296db",
"backgroundColor": "ffffff",
"list": [
{
"selectedIconPath": "images/tabbar/daka_sel.png",
"iconPath": "images/tabbar/daka_nor.png",
"pagePath": "pages/service/service",
"text": "服务"
},
{
"pagePath": "pages/PersonalCenter/PersonalCenter",
"text": "IssueStore",
"iconPath": "images/tabbar/center_nor.png",
"selectedIconPath": "images/tabbar/center_sel.png"
}
]
},
"networkTimeout": {
"request": 5000,
"downloadFile": 5000
},
"permission": {
"scope.userLocation": {
"desc": "你的位置信息将用于小程序定位"
}
},
"sitemapLocation": "sitemap.json"
}