-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
46 lines (46 loc) · 1.21 KB
/
app.json
File metadata and controls
46 lines (46 loc) · 1.21 KB
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
{
"pages": [
"pages/home/home",
"pages/logs/logs",
"pages/category/category",
"pages/cart/cart",
"pages/profile/profile"
],
"window": {
"navigationBarBackgroundColor": "#666",
"navigationBarTextStyle": "white",
"navigationBarTitleText": "小程序",
"backgroundColor": "#eeeeee",
"backgroundTextStyle": "light",
"enablePullDownRefresh": false
},
"tabBar": {
"selectedColor": "#ff5777",
"list": [{
"pagePath": "pages/home/home",
"text": "home",
"iconPath": "assets/tabbar/home.png",
"selectedIconPath": "assets/tabbar/home_active.png"
},
{
"pagePath": "pages/category/category",
"text": "category",
"iconPath": "assets/tabbar/category.png",
"selectedIconPath": "assets/tabbar/category_active.png"
},
{
"pagePath": "pages/cart/cart",
"text": "cart",
"iconPath": "assets/tabbar/cart.png",
"selectedIconPath": "assets/tabbar/cart_active.png"
},
{
"pagePath": "pages/profile/profile",
"text": "profile",
"iconPath": "assets/tabbar/profile.png",
"selectedIconPath": "assets/tabbar/profile_active.png"
}]
},
"style": "v2",
"sitemapLocation": "sitemap.json"
}