-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
61 lines (61 loc) · 1.49 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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"pages": [
"pages/index/index",
"pages/talk/talk",
"pages/discuss/discuss",
"pages/discuss/message/message",
"pages/list/list",
"pages/dining/dining",
"pages/mine/mine",
"pages/mine/about/about",
"pages/mine/school/school"
],
"permission": {
"scope.userLocation": {
"desc": "小程序将获取您的当前地理位置"
}
},
"window": {
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "山东青年政治学院",
"backgroundColor": "#eeeeee",
"navigationBarTextStyle": "black",
"backgroundTextStyle":"dark"
},
"style": "v2",
"sitemapLocation": "sitemap.json",
"debug": true,
"tabBar":{
"selectedColor": "#006835",
"list":[{
"text":"主页",
"pagePath":"pages/index/index",
"iconPath":"images/home1.png",
"selectedIconPath": "images/home2.png"
},{
"text":"资讯",
"pagePath":"pages/talk/talk",
"iconPath": "images/talk1.png",
"selectedIconPath": "images/talk2.png"
},
{
"text":"动态",
"pagePath":"pages/discuss/discuss",
"iconPath": "images/star1.png",
"selectedIconPath": "images/star2.png"
},
{
"text": "服务",
"pagePath": "pages/list/list",
"iconPath": "images/list1.png",
"selectedIconPath": "images/list2.png"
}
,
{
"text": "我的",
"pagePath": "pages/mine/mine",
"iconPath": "images/mine1.png",
"selectedIconPath": "images/mine2.png"
}]
}
}