-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
48 lines (47 loc) · 1.46 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
{
"pages": [
"pages/homepage/index",
"pages/classify/index",
"pages/collect/index",
"pages/list/index",
"pages/detail/index",
"components/search/index",
"components/tags/index",
"components/card/index",
"components/detail/index",
"components/listItem/index"
],
"window": {
"navigationBarBackgroundColor": "#ffffff",
"navigationBarTextStyle": "black",
"navigationBarTitleText": "菜谱",
"backgroundColor": "#eeeeee",
"backgroundTextStyle": "light",
"enablePullDownRefresh": false
},
"tabBar": {
"list": [
{
"pagePath": "pages/homepage/index",
"text": "首页",
"selectedColor": "#000000",
"iconPath":"/img/homepage.png",
"selectedIconPath":"/img/homepage_selected.png"
},
{
"pagePath": "pages/classify/index",
"text": "分类",
"selectedColor": "#000000",
"iconPath": "/img/classify.png",
"selectedIconPath": "/img/classify_selected.png"
},
{
"pagePath": "pages/collect/index",
"text": "收藏",
"selectedColor": "#000000",
"iconPath": "/img/collect.png",
"selectedIconPath": "/img/collect_selected.png"
}
]
}
}