-
Notifications
You must be signed in to change notification settings - Fork 79
/
pages.json
109 lines (109 loc) · 2.21 KB
/
pages.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"pages": [{
//pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
"path": "pages/new/new",
"style": {
"navigationBarTitleText": "最新",
"enablePullDownRefresh": true
}
},
{
"path": "pages/hot/hot",
"style": {
"navigationBarTitleText": "最热",
"enablePullDownRefresh": true
}
},
{
"path": "pages/detail/detail",
"style": {
"navigationBarTitleText": "详情",
"navigationBarBackgroundColor": "#000000",
"backgroundColor": "#000000",
"app-plus": {
"bounce": "none",
"titleNView": {
"buttons": [{
"type": "share"
}]
}
},
"h5": {
"titleNView": {
"buttons": [{
"type": "favorite"
}]
}
}
}
},
{
"path": "pages/tag/tag",
"style": {
"navigationBarTitleText": "分类",
"enablePullDownRefresh": false
}
},
{
"path": "pages/list/list",
"style": {
"navigationBarTitleText": "专题",
"enablePullDownRefresh": true
}
},
{
"path": "pages/center/center",
"style": {
"navigationBarTitleText": "个人中心",
"enablePullDownRefresh": false
}
},
{
"path": "pages/login/login",
"style": {
"navigationBarTitleText": "登录"
}
},
{
"path": "pages/about/about",
"style": {}
}
],
"globalStyle": {
"navigationBarTextStyle": "white",
"navigationBarTitleText": "看图",
"navigationBarBackgroundColor": "#FF80AB",
"backgroundColor": "#EFEFEF"
},
"tabBar": {
"color": "#444444",
"selectedColor": "#FF80AB",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [{
"pagePath": "pages/new/new",
"iconPath": "static/index-0.png",
"selectedIconPath": "static/index-1.png",
"text": "最新"
},
{
"pagePath": "pages/hot/hot",
"iconPath": "static/hot-0.png",
"selectedIconPath": "static/hot-1.png",
"text": "推荐"
},
{
"pagePath": "pages/tag/tag",
"iconPath": "static/tag-0.png",
"selectedIconPath": "static/tag-1.png",
"text": "分类"
},
{
"pagePath": "pages/center/center",
"iconPath": "static/center-0.png",
"selectedIconPath": "static/center-1.png",
"text": "我的"
}
]
}
}