c293da23
刘淇
新园林init
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{
"pages": [
{
"path": "pages/login/index",
"style": {
"navigationBarTitleText": "登录"
}
},
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "首页"
}
},
{
"path": "pages/workbench/index",
"style": {
|
a2702f6d
刘淇
巡查计划
|
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
"navigationBarTitleText": "待完成计划明细",
"enablePullDownRefresh": false
}
},
{
"path": "patrol-manage/finish-plan-detail/index",
"style": {
"navigationBarTitleText": "已完成计划明细",
"enablePullDownRefresh": false
}
},
{
"path": "patrol-manage/add-patrol-record/index",
"style": {
"navigationBarTitleText": "添加巡查记录",
"enablePullDownRefresh": false
|
c293da23
刘淇
新园林init
|
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
|
"path": "12345-order/index",
"style": { "navigationBarTitleText": "12345工单" }
},
{
"path": "patrol-manage/index",
"style": { "navigationBarTitleText": "巡查管理" }
},
{
"path": "maintain-manage/index",
"style": { "navigationBarTitleText": "养护管理" }
}
]
},
{
"root": "pages-sub/problem",
"pages": [
{
"path": "order-manage/index",
"style": { "navigationBarTitleText": "工单管理" }
},
{
"path": "problem-allot/index",
"style": { "navigationBarTitleText": "问题分配" }
}
]
},
{
"root": "pages-sub/data",
"pages": [
{
"path": "base-data/index",
"style": { "navigationBarTitleText": "基础数据" }
},
{
"path": "personnel-track/index",
"style": { "navigationBarTitleText": "人员轨迹" }
},
{
"path": "personnel-manage/index",
"style": { "navigationBarTitleText": "人员管理" }
},
{
"path": "tree-archive/index",
"style": { "navigationBarTitleText": "行道树档案" }
}
]
}
],
"tabBar": {
"color": "#666666",
"selectedColor": "#1989fa",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "static/icons/home.png",
"selectedIconPath": "static/icons/home-active.png"
},
{
"pagePath": "pages/workbench/index",
"text": "工作台",
"iconPath": "static/icons/mine.png",
"selectedIconPath": "static/icons/mine-active.png"
},
{
"pagePath": "pages/mine/index",
"text": "我的",
"iconPath": "static/icons/mine.png",
"selectedIconPath": "static/icons/mine-active.png"
}
]
},
"easycom": {
"autoscan": true,
"custom": {
"^u--(.*)": "@/uni_modules/uview-plus/components/u-$1/u-$1.vue",
"^up-(.*)": "@/uni_modules/uview-plus/components/u-$1/u-$1.vue",
|