-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
33 lines (33 loc) · 847 Bytes
/
app.json
File metadata and controls
33 lines (33 loc) · 847 Bytes
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
{
"pages": [
"pages/index/index",
"pages/my/index",
"pages/empower/index"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "Weixin",
"navigationBarTextStyle": "black"
},
"tabBar": {
"custom": true,
"color": "#86909C",
"selectedColor": "#165DFF",
"backgroundColor": "#f2f2f2",
"borderStyle": "black",
"list": [{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "./assets/images/home.png",
"selectedIconPath": "./assets/images/home-selected.png"
}, {
"pagePath": "pages/my/index",
"text": "我的",
"iconPath": "./assets/images/my.png",
"selectedIconPath": "./assets/images/my-selected.png"
}]
},
"style": "v2",
"sitemapLocation": "sitemap.json"
}