pages.json
2.0 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
{
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/xunjian/list",
"style": {
"navigationStyle": "custom",
"navigationBarTitleText": "巡检列表"
}
},
{
"path": "pages/login/index",
"style": {
"navigationStyle": "custom",
"navigationBarTitleText": "用户登录"
}
},
{
"path": "pages/xunjian/list_xjd",
"style": {
"navigationStyle": "custom",
"navigationBarTitleText": "巡检点"
}
},
{
"path": "pages/xunjian/index",
"style":{
"navigationStyle": "custom",
"navigationBarTitleText": "巡检"
}
},{
"path": "pages/xunjian/detail",
"style": {
"navigationStyle": "custom",
"navigationBarTitleText": "巡检详情"
}
},{
"path": "pages/xunjian/record",
"style":{
"navigationStyle": "custom",
"navigationBarTitleText": "巡检记录"
}
},{
"path": "pages/my/index",
"style":{
"navigationStyle": "custom",
"navigationBarTitleText": "我的"
}
},{
"path": "pages/login/changePwd",
"style":{
"navigationStyle": "custom",
"navigationBarTitleText": "修改密码"
}
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#448aff",
"backgroundColor": "#F8F8F8"
},
"tabBar": {
"color": "#929292",
"selectedColor": "#000",
"borderStyle": "white",
"backgroundColor": "#fff",
"list": [
{
"pagePath": "pages/xunjian/list",
"text": "巡检路线",
"iconPath": "static/img/home1.png",
"selectedIconPath": "static/img/home01.png"
},
{
"pagePath": "pages/xunjian/record",
"text": "巡检记录",
"iconPath": "static/img/ks1.png",
"selectedIconPath": "static/img/ks01.png"
},
{
"pagePath": "pages/my/index",
"text": "我的",
"iconPath": "static/img/my1.png",
"selectedIconPath": "static/img/my01.png"
}
]
}
}