pages.json
1.1 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
{
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "双色球大师"
}
}, {
"path": "pages/history/history",
"style": {
"navigationBarTitleText": "历史开奖",
"enablePullDownRefresh": false
}
}, {
"path": "pages/number_book/number_book",
"style": {
"navigationBarTitleText": "号码本",
"enablePullDownRefresh": false
}
}, {
"path": "pages/select_code/select_code",
"style": {
"navigationBarTitleText": "立即选号",
"enablePullDownRefresh": false,
"app-plus": {
"bounce": "none",
"titleNView": {
"backgroundColor": "#ff0000", //显现的背景色
"type": "transparent" //透明渐变导航栏
}
}
}
}
],
"globalStyle": {
"navigationBarTextStyle": "white",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#FF3333",
"backgroundColor": "#FFE5E5"
},
"uniIdRouter": {}
}