-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
61 lines (61 loc) · 1.58 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
{
"pages": [
"pages/index/index",
"pages/search/index/index",
"pages/search/book/book",
"pages/search/music/music",
"pages/search/movie/movie",
"pages/create/book/book",
"pages/create/music/music",
"pages/create/movie/movie",
"pages/selection/selection",
"pages/explore/explore",
"pages/card/card",
"pages/detail/detail",
"pages/mine/mine",
"pages/user/user",
"pages/like/like",
"pages/maker/maker"
],
"window": {
"navigationBarBackgroundColor": "#ffffff",
"navigationBarTextStyle": "black",
"navigationBarTitleText": "天天码图",
"backgroundColor": "#fff",
"backgroundTextStyle": "dark",
"enablePullDownRefresh": true
},
"tabBar": {
"position": "bottom",
"color": "#8a8a8a",
"selectedColor": "#2c2c2c",
"backgroundColor": "#ffffff",
"borderStyle": "white",
"list": [
{
"pagePath": "pages/index/index",
"iconPath": "image/star.png",
"selectedIconPath": "image/star_hl.png",
"text": "精选"
},
{
"pagePath": "pages/explore/explore",
"iconPath": "image/explore.png",
"selectedIconPath": "image/explore_hl.png",
"text": "发现"
},
{
"pagePath": "pages/search/index/index",
"iconPath": "image/make.png",
"selectedIconPath": "image/make_hl.png",
"text": "词卡"
},
{
"pagePath": "pages/mine/mine",
"iconPath": "image/profile.png",
"selectedIconPath": "image/profile_hl.png",
"text": "我的"
}
]
}
}