-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
37 lines (37 loc) · 917 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
{
"pages":[
"pages/index/index",
"pages/logs/logs",
"pages/article/article",
"pages/user/user",
"pages/collection/collection"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#05b0ff",
"navigationBarTitleText": "课设:高校新闻",
"navigationBarTextStyle":"black"
},
"tabBar": {
"selectedColor" :"#05b0ff",
"list": [{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "images/home.png",
"selectedIconPath": "images/home-actived.png"
},
{
"pagePath": "pages/user/user",
"text": "我的",
"iconPath": "images/profile.png",
"selectedIconPath": "images/profile-actived.png"
}]
},
"style": "v2",
"sitemapLocation": "sitemap.json",
"permission": {
"scope.userLocation": {
"desc": "您的位置信息将用于获取天气预报信息"
}
}
}