-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
55 lines (55 loc) · 1.48 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
{
"pages": [
"pages/home/home",
"pages/index/index",
"pages/logs/logs",
"pages/product/product",
"pages/mine/mine",
"pages/find/find",
"pages/login/login",
"pages/regist/regist",
"pages/web/web"
],
"permission": {
"scope.userLocation": {
"desc": "你的位置信息将用于小程序位置接口的效果展示"
}
},
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "WeChat",
"navigationBarTextStyle": "black"
},
"tabBar": {
"color": "#a9b7b7",
"selectedColor": "red",
"borderStyle": "black",
"list": [
{
"pagePath": "pages/home/home",
"text": "首页",
"iconPath": "images/tab/btn_tabbar_tuijian_nor.png",
"selectedIconPath": "images/tab/btn_tabbar_tuijian_press.png"
},
{
"pagePath": "pages/product/product",
"text": "产品",
"iconPath": "images/tab/btn_tabbar_list_nor.png",
"selectedIconPath": "images/tab/btn_tabbar_list_press.png"
},
{
"pagePath": "pages/mine/mine",
"text": "我的",
"iconPath": "images/tab/btn_tabbar_wode_nor.png",
"selectedIconPath": "images/tab/btn_tabbar_wode_press.png"
},
{
"pagePath": "pages/find/find",
"text": "发现",
"iconPath": "images/tab/btn_tabbar_faxian_nor.png",
"selectedIconPath": "images/tab/btn_tabbar_faxian_press.png"
}
]
}
}