-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpages.json
113 lines (108 loc) · 3.05 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
{
"easycom": {
// 下载安装的方式需要前面的"@/",npm安装的方式无需"@/"
// 下载安装方式
"^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
// npm安装方式
// "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
},
"tabBar": {
"color": "#bfbfbf",
"selectedColor": "#1296db",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [{
"pagePath": "pages/index/index",
"iconPath": "static/image/index-icon.png",
"selectedIconPath": "static/image/index-active.png",
"text": "首页"
}, {
"pagePath": "pages/business/business",
"iconPath": "static/image/product-icon.png",
"selectedIconPath": "static/image/product-active.png",
"text": "业务"
}, {
"pagePath": "pages/my/index",
"iconPath": "static/image/my-icon.png",
"selectedIconPath": "static/image/my-active.png",
"text": "我的"
}]
},
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/login/login",
"style": {
"navigationStyle": "custom", // 隐藏系统导航栏
"navigationBarTextStyle": "white", // 状态栏字体为白色,只能为 white-白色,black-黑色 二选一
"navigationBarTitleText": "环境在线监测"
// "enablePullDownRefresh": false
}
},
{
"path": "pages/index/index",
"style": {
"navigationStyle": "custom", // 隐藏系统导航栏
"navigationBarTextStyle": "white" // 状态栏字体为白色,只能为 white-白色,black-黑色 二选一
}
},
{
"path": "pages/my/index",
"style": {
//"navigationStyle": "custom" // 隐藏系统导航栏
"navigationBarTitleText": "我的",
"enablePullDownRefresh": false
}
},
{
"path": "pages/messageLog/messageLog",
"style": {
"navigationBarTitleText": "报文日志",
"enablePullDownRefresh": false
}
}, {
"path": "pages/register/register",
"style": {
"navigationBarTitleText": "注册",
"enablePullDownRefresh": false
}
}, {
"path": "pages/changePassword/changePassword",
"style": {
"navigationBarTitleText": "修改密码",
"enablePullDownRefresh": false
}
}, {
"path": "pages/riverInfo/riverInfo",
"style": {
"navigationBarTitleText": "",
"enablePullDownRefresh": false
}
}, {
"path": "pages/waterQuality/waterQuality",
"style": {
"navigationBarTitleText": "",
"enablePullDownRefresh": false
}
}, {
"path": "pages/equipmentStatus/equipmentStatus",
"style": {
"navigationBarTitleText": "",
"enablePullDownRefresh": false
}
}
,{
"path" : "pages/business/business",
"style" :
{
"navigationBarTitleText": "",
"enablePullDownRefresh": false
}
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "河道水环境综合治理",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
}
}