pages.json
3.11 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
{
"easycom": {
"^u-(.*)": "@/uni_modules/uview-ui/components/u-$1/u-$1.vue"
},
"pages": [{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "首页"
}
},
{
"path": "pages/device/device",
"style": {
"navigationBarTitleText": "设备",
"backgroundColorTop": "gray",
"backgroundColorBottom": "gray",
"app-plus": {
"scrollIndicator": "none",
"titleNView": {
"titleText": "", //不要设置标题
"buttons": [{
"text": "搜索",
"fontSize": "16",
"float": "right",
"color": "blue"
}],
"searchInput": {
"align": "left",
"placeholder": "输入设备SN或名称搜索",
"borderRadius": "50upx",
"backgroundColor": "#fff"
}
}
}
}
},
{
"path": "pages/alert/alert",
"style": {
"navigationBarTitleText": "告警"
}
}, {
"path": "pages/personal/personal",
"style": {
"navigationBarTitleText": "个人中心"
}
}, {
"path": "pages/personal/login",
"style": {
"navigationBarTitleText": "登录"
}
}, {
"path": "pages/personal/code",
"style": {
"navigationBarTitleText": "验证码登录"
}
}, {
"path": "pages/personal/findPassword",
"style": {
"navigationBarTitleText": "找回密码"
}
}, {
"path": "pages/personal/set",
"style": {
"navigationBarTitleText": "个人资料"
}
}, {
"path": "pages/systemNotify/systemNotify",
"style": {
"navigationBarTitleText": "通知列表"
}
},
{
"path": "pages/systemNotify/notifyDetail",
"style": {
"navigationBarTitleText": "通知详情"
}
}, {
"path": "pages/feedback/feedback",
"style": {
"navigationBarTitleText": "意见反馈",
"app-plus": {
"scrollIndicator": "none" //当前页面不显示滚动条
}
}
}, {
"path": "pages/index/camera/camera",
"style": {
"navigationBarTitleText": "查看摄像头"
// "app-plus": {
// "scrollIndicator": "none" //当前页面不显示滚动条
// }
}
}, {
"path": "pages/index/orgStatus/orgStatus",
"style": {
"navigationBarTitleText": "查看组态"
}
}
],
"globalStyle": {
"mp-alipay": {
"allowsBounceVertical": "NO"
},
"navigationBarTextStyle": "black",
"navigationBarTitleText": "云腾app",
"navigationBarBackgroundColor": "#FFFFFF",
"backgroundColor": "#FFFFFF"
},
"tabBar": {
"color": "#ffffff",
"selectedColor": "#ffffff",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [{
"pagePath": "pages/index/index",
"iconPath": "static/basics.png",
"selectedIconPath": "static/basics.png",
"text": "首页"
},
{
"pagePath": "pages/device/device",
"iconPath": "static/basics.png",
"selectedIconPath": "static/basics.png",
"text": "设备"
},
{
"pagePath": "pages/alert/alert",
"iconPath": "static/basics.png",
"selectedIconPath": "static/basics.png",
"text": "告警"
},
{
"pagePath": "pages/personal/personal",
"iconPath": "static/basics.png",
"selectedIconPath": "static/basics.png",
"text": "我的"
}
]
}
}