pages.json
4.9 KB
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
{
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "首页",
"enablePullDownRefresh": false
}
}, {
"path": "pages/mine/mine",
"style": {
"navigationBarTitleText": "我的",
"enablePullDownRefresh": false,
"navigationStyle": "custom"
}
}, {
"path": "pages/open/open",
"style": {
"navigationBarTitleText": "开奖",
"enablePullDownRefresh": false
}
}, {
"path": "pages/expert/expert",
"style": {
"navigationBarTitleText": "专家",
"enablePullDownRefresh": false,
"navigationStyle": "custom"
}
},
{
"path": "pages/notitle_webview/notitle_webview",
"style": {
"navigationBarTitleText": "",
"enablePullDownRefresh": false,
"navigationStyle": "custom"
}
}, {
"path": "pages/normal_webview/normal_webview",
"style": {
"navigationBarTitleText": "",
"enablePullDownRefresh": false
}
},
{
"path": "pages/logout/logout",
"style": {
"navigationBarTitleText": "账号注销",
"enablePullDownRefresh": false,
"navigationBarTextStyle": "black",
"navigationBarBackgroundColor": "#FFFFFF"
}
},
{
"path": "pages/login_pwd/login_pwd",
"style": {
"navigationBarTitleText": "账号登录",
"enablePullDownRefresh": false,
"navigationStyle": "custom"
}
}, {
"path": "pages/login_yzm/login_yzm",
"style": {
"navigationBarTitleText": "验证码登录",
"enablePullDownRefresh": false,
"navigationStyle": "custom"
}
}
,{
"path" : "pages/settings/settings",
"style" :
{
"navigationBarTitleText": "设置",
"enablePullDownRefresh": false,
"backgroundColor": "#000000"
}
}
,{
"path" : "pages/xingqu/xingqu",
"style" :
{
"navigationBarTitleText": "选择感兴趣的内容",
"enablePullDownRefresh": false,
"navigationStyle": "custom",
"backgroundColor": "#F5F5F5"
}
}
,{
"path" : "pages/suggest/suggest",
"style" :
{
"navigationBarTitleText": "提建议",
"enablePullDownRefresh": false,
"navigationStyle": "custom"
}
}
,{
"path" : "pages/security_center/security_center",
"style" :
{
"navigationBarTitleText": "安全中心",
"enablePullDownRefresh": false,
"navigationStyle": "custom"
}
}
,{
"path" : "pages/number_book/number_book",
"style" :
{
"navigationBarTitleText": "号码本",
"enablePullDownRefresh": false
}
}
,{
"path" : "pages/bind_card/bind_card",
"style" :
{
"navigationBarTitleText": "",
"enablePullDownRefresh": false,
"navigationStyle": "custom"
}
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "一定牛",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
"tabBar": {
"backgroundColor": "#F8F8F8",
"selectedColor": "#0a1b31",
"color": "#999999",
"list": [{
"text": "首页",
"iconPath": "static/tab_icons/bottom_home_normal.webp",
"selectedIconPath": "static/tab_icons/bottom_home_press.webp",
"pagePath": "pages/index/index"
},
{
"text": "开奖",
"iconPath": "static/tab_icons/bottom_open_normal.webp",
"selectedIconPath": "static/tab_icons/bottom_open_press.webp",
"pagePath": "pages/open/open"
},
{
"text": "专家",
"iconPath": "static/tab_icons/bottom_talk_normal.webp",
"selectedIconPath": "static/tab_icons/bottom_talk_press.webp",
"pagePath": "pages/expert/expert"
},
{
"text": "我的",
"iconPath": "static/tab_icons/bottom_user_normal.webp",
"selectedIconPath": "static/tab_icons/bottom_user_press.webp",
"pagePath": "pages/mine/mine"
}
]
},
"uniIdRouter": {}
}