pages.json
2.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
{
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/index/init",
"style": {
"navigationStyle":"custom"
}
},
{
"path": "pages/my/opinion",
"style": {
"navigationBarTitleText":"反馈与帮助"
}
},
{
"path": "pages/my/us",
"style": {
"navigationBarTitleText":""
}
},
{
"path": "pages/map/map",
"style": {
"navigationBarTitleText":"地图"
}
},
{
"path": "pages/index/license/checkDetail"
},
{
"path": "pages/index/license/search",
"style": {
"navigationBarTitleText":"搜索",
"navigationBarBackgroundColor":"#fff"
}
},
{
"path": "pages/index/license/factoryDetail",
"style": {
"navigationBarBackgroundColor":"#fff"
}
},
{
"path": "pages/index/license/check",
"style": {
"navigationBarTitleText":"排污许可证后监管",
"navigationBarBackgroundColor":"#4BB377",
"navigationBarTextStyle":"white"
}
},
{
"path": "pages/index/index",
"style": {
"navigationStyle":"custom"
}
}
,{
"path" : "pages/login/login",
"style" :
{
"navigationStyle":"custom"
}
}
,{
"path" : "pages/news/news",
"style" :
{
"navigationBarTitleText": "消息"
}
}
,{
"path" : "pages/my/my",
"style" :
{
"navigationStyle":"custom"
}
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarBackgroundColor": "#FFFFFF",
"backgroundColor": "#FFFFFF"
},
"tabBar": {
"color": "#646566",
"selectedColor": "#4bb377",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [{
"pagePath": "pages/index/index",
"iconPath": "static/image/ic_tabbar_home_n.png",
"selectedIconPath": "static/image/ic_tabbar_home_s.png",
"text": "首页"
}, {
"pagePath": "pages/map/map",
"iconPath": "static/image/ic_tabbar_find_n.png",
"selectedIconPath": "static/image/ic_tabbar_find_s.png",
"text": "地图"
}, {
"pagePath": "pages/news/news",
"iconPath": "static/image/ic_tabbar_oder_n.png",
"selectedIconPath": "static/image/ic_tabbar_oder_s.png",
"text": "消息"
}, {
"pagePath": "pages/my/my",
"iconPath": "static/image/ic_tabbar_home_n_2.png",
"selectedIconPath": "static/image/ic_tabbar_home_s_2.png",
"text": "我的"
}]
}
}