-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
67 lines (65 loc) · 1.71 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"pages": [
"pages/index/index",
"pages/add_error/index",
"pages/add_week/index",
"pages/detail_week/index",
"pages/mine/index",
"pages/all_week/index",
"pages/detail/index",
"pages/info/info",
"pages/all_error/index",
"pages/authorize/authorize",
"pages/board/index",
"pages/detail_board/index",
"pages/more_board/index",
"pages/detail_tip/index",
"pages/more_tip/index",
"pages/tel/tel"
],
"window": {
"navigationBarBackgroundColor": "#39b54a",
"navigationBarTitleText": "Color UI",
"navigationStyle": "custom",
"navigationBarTextStyle": "white"
},
"usingComponents": {
"cu-custom": "/colorui/components/cu-custom"
},
"tabBar": {
"color": "#ccc",
"list": [
{
"text": "首页",
"iconPath": "images/home.png",
"selectedIconPath": "images/home-actived.png",
"pagePath": "pages/index/index"
},
{
"text": "公告通知",
"iconPath": "images/board.png",
"selectedIconPath": "images/board-actived.png",
"pagePath": "pages/board/index"
},
{
"text": "每周上报",
"iconPath": "images/star.png",
"selectedIconPath": "images/star-actived.png",
"pagePath": "pages/all_week/index"
},
{
"text": "故障上报",
"iconPath": "images/note.png",
"selectedIconPath": "images/note_actived.png",
"pagePath": "pages/all_error/index"
},
{
"text": "个人中心",
"iconPath": "images/profile.png",
"selectedIconPath": "images/profile-actived.png",
"pagePath": "pages/mine/index"
}
]
},
"sitemapLocation": "sitemap.json"
}