-
Notifications
You must be signed in to change notification settings - Fork 1
/
pages.json
114 lines (113 loc) · 2.64 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
110
111
112
113
114
{
"pages": [{
"path": "pages/index/index",
// "enablePullDownRefresh": true,
"style": {
"navigationBarTitleText": "首页",
"enablePullDownRefresh": true,
"app-plus": {
"animationType": "fade-in",
"animationDuration": 300
}
}
}, {
"path": "pages/my/my",
"style": {
"navigationBarTitleText": "个人中心",
"enablePullDownRefresh":true,
"navigationStyle": "custom"
}
},
{
"path": "pages/search/search",
"style": {
"navigationBarTitleText": "搜索",
"navigationStyle": "custom"
}
}, {
"path": "pages/demo/demo",
"style": {
"navigationBarTitleText": "文章详情"
}
},{
"path":"pages/book_self/book_self",
"style":{
"enablePullDownRefresh": true,
"navigationBarTitleText":"我的书架"
}
}
,{
"path" : "pages/book-detail/book-detail",
"style" : {
"navigationStyle": "custom",
"app-plus": {
"animationType": "fade-in",
"animationDuration": 300
}
}
}
,{
"path" : "pages/read/read",
"style" : {
"navigationStyle": "custom",
"navigationBarTitleText":"阅读"
}
}
,{
"path" : "pages/login/login",
"style" : {
"navigationBarTitleText":"登录"
}
}
,{
"path" : "pages/login/register",
"style" : {
"navigationBarTitleText":"注册"
}
}
,{
"path" : "pages/setInfo/setInfo",
"style" : {
"navigationBarTitleText":"修改信息"
}
}
],
"globalStyle": {
"navigationBarTextStyle": "white",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#17b5af",
"backgroundColor": "#17b5af"
},
"tabBar": {
"color": "#9f9f9f",
"selectedColor": "#17b5af",
"borderStyle": "black",
"backgroundColor": "white",
"list": [
{
"pagePath": "pages/book_self/book_self",
"text": "书架",
"selectedIconPath": "static/images/tabBar/books_select.png",
"iconPath": "static/images/tabBar/books.png"
},
{
"pagePath": "pages/index/index",
"text": "首页",
"selectedIconPath": "static/images/tabBar/caidan_select.png",
"iconPath": "static/images/tabBar/caidan.png"
},
{
"pagePath":"pages/search/search",
"text":"搜索",
"selectedIconPath":"static/images/tabBar/sou_select.png",
"iconPath":"static/images/tabBar/sou.png"
},
{
"pagePath": "pages/my/my",
"text": "个人中心",
"selectedIconPath": "static/images/tabBar/my_select.png",
"iconPath": "static/images/tabBar/my.png"
}
]
}
}