-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
executable file
·49 lines (49 loc) · 1.26 KB
/
app.json
File metadata and controls
executable file
·49 lines (49 loc) · 1.26 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
47
48
49
{
"pages": [
"pages/home/home",
"pages/me/me",
"pages/other/other",
"pages/detial/detail"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "WeChatEmptyProject",
"navigationBarTextStyle": "black",
"navigationStyle": "default"
},
"tabBar": {
"borderStyle": "black",
"selectedColor": "#000000",
"backgroundColor": "#ffffff",
"color": "#c7c7c7",
"list": [
{
"pagePath": "pages/home/home",
"selectedIconPath": "/images/tab/home.png",
"iconPath": "/images/tab/home_normal.png",
"text": "home"
},
{
"pagePath": "pages/other/other",
"selectedIconPath": "/images/tab/setting.png",
"iconPath": "/images/tab/setting_normal.png",
"text": "other"
},
{
"pagePath": "pages/me/me",
"selectedIconPath": "/images/tab/me.png",
"iconPath": "/images/tab/me_normal.png",
"text": "me"
}
]
},
"sitemapLocation": "sitemap.json",
"usingComponents": {
"l-mask": "/dist/mask/index",
"l-toast": "/dist/toast/index",
"l-dialog": "/dist/dialog/index",
"l-loadmore": "/dist/loadmore/index",
"l-message": "/dist/message/index"
}
}