-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
57 lines (52 loc) · 1.39 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
{
"pages": [
"pages/index/index",
"pages/menuDetail/menuDetail",
"pages/comment/comment",
"pages/my/center/center",
"pages/my/my",
"pages/my/addMenu/addMenu",
"pages/my/myMenu/myMenu",
"pages/menuList/menuList",
"pages/search/search",
"pages/favorites/favorites",
"pages/catelist/catelist",
"pages/logs/logs",
"pages/my/history/history",
"pages/my/feedback/feedback",
"components/tips/tips"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#ff6161",
"navigationBarTitleText": "家有小厨",
"navigationBarTextStyle": "white"
},
"sitemapLocation": "sitemap.json",
"tabBar": {
"color": "#6e6d6b",
"selectedColor": "#e64340",
"borderStyle": "white",
"backgroundColor": "#FFF",
"list": [
{
"pagePath": "pages/index/index",
"iconPath": "images/nav/home-off.png",
"selectedIconPath": "images/nav/home-on.png",
"text": "首页"
},
{
"pagePath": "pages/catelist/catelist",
"iconPath": "images/nav/category-off.png",
"selectedIconPath": "images/nav/category-on.png",
"text": "分类"
},
{
"pagePath": "pages/my/center/center",
"iconPath": "images/nav/my-off.png",
"selectedIconPath": "images/nav/my-on.png",
"text": "我的"
}
]
}
}