-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.json
44 lines (44 loc) · 1.13 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
{
"pages": [
"pages/index/index",
"pages/home/home",
"pages/wages/wages",
"pages/count/count",
"pages/profile/profile",
"pages/building/building",
"pages/more/more",
"pages/logs/logs"
],
"window": {
"navigationBarTitleText": "我爱查工资条"
},
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "WeChat",
"navigationBarTextStyle": "black"
},
"tabBar": {
"list": [{
"pagePath": "pages/home/home",
"text": "主页",
"iconPath":"images/home.png",
"selectedIconPath":"images/home-selected.png"
}, {
"pagePath": "pages/wages/wages",
"text": "工资",
"iconPath":"images/gongzi.png",
"selectedIconPath":"images/gongzi-selected.png"
}, {
"pagePath": "pages/count/count",
"text": "统计",
"iconPath":"images/tongji.png",
"selectedIconPath":"images/tongji-selected.png"
}, {
"pagePath": "pages/profile/profile",
"text": "我的",
"iconPath":"images/profile.png",
"selectedIconPath":"images/profile-selected.png"
}]
}
}