safecheck-client 3.0.33-22 → 3.0.33-23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +133 -133
- package/src/App.vue +31 -31
- package/src/filiale/fugou/pc/checkUserList.vue +1 -1
- package/src/filiale/yongzhou/pc/CheckPlan.vue +59 -0
- package/src/filiale/yongzhou/pc/DefectPaperNew.vue +1105 -1105
- package/src/filiale/yongzhou/pc/{safeCheckExamine.vue → SelectCheckPlan.vue} +364 -277
- package/src/filiale/yongzhou/pc/safeDetail.vue +255 -269
- package/src/filiale/yongzhou/pc.js +31 -29
- package/src/main.js +33 -33
- package/src/filiale/yongzhou/pc/safeCheckDetail.vue +0 -298
@@ -1,269 +1,255 @@
|
|
1
|
-
<template>
|
2
|
-
<div class="flex-row">
|
3
|
-
<div class="basic-main">
|
4
|
-
<criteria-paged :model="model" v-ref:paged>
|
5
|
-
<criteria partial='criteria' class="search_area" @condition-changed='$parent.selfSearch' v-ref:criteria>
|
6
|
-
<div partial>
|
7
|
-
<div class="row">
|
8
|
-
<div class="form-group col-sm-4">
|
9
|
-
<label class="font_normal_body">开始时间:</label>
|
10
|
-
<datepicker
|
11
|
-
placeholder='请选择'
|
12
|
-
style="width:60%"
|
13
|
-
:disabled-days-of-week="[]"
|
14
|
-
:format="'yyyy-MM-dd'"
|
15
|
-
:show-rest-button="reset"
|
16
|
-
:value.sync="model.start_time"
|
17
|
-
v-model="model.start_time"
|
18
|
-
condition="tcp.f_create_time >= '{} 00:00:00'">
|
19
|
-
</datepicker>
|
20
|
-
</div>
|
21
|
-
<div class="form-group col-sm-4">
|
22
|
-
<label class="font_normal_body">结束时间:</label>
|
23
|
-
<datepicker
|
24
|
-
placeholder='请选择'
|
25
|
-
:disabled-days-of-week="[]"
|
26
|
-
style="width:60%"
|
27
|
-
:format="'yyyy-MM-dd'"
|
28
|
-
:show-rest-button="reset"
|
29
|
-
:value.sync="model.end_time"
|
30
|
-
v-model="model.end_time"
|
31
|
-
condition="tcp.f_create_time <= '{} 23:59:59'">
|
32
|
-
</datepicker>
|
33
|
-
</div>
|
34
|
-
<div class="col-sm-4 form-group">
|
35
|
-
<label class="font_normal_body">小区名称:</label>
|
36
|
-
<input style="width: 60%" class="input_search" v-model="model.f_residential_area"
|
37
|
-
placeholder="请输入小区(可模糊查询)" condition="tcpi.f_residential_area like '%{}%'">
|
38
|
-
</div>
|
39
|
-
<div class="form-group col-sm-4">
|
40
|
-
<label class="font_normal_body">用户类型</label>
|
41
|
-
<v-select :value.sync="model.f_user_type" v-model='model.f_user_type'
|
42
|
-
:value-single="true" style="width: 60%"
|
43
|
-
class="select_list select"
|
44
|
-
:options='$parent.$parent.user_types' placeholder='用户类型'
|
45
|
-
close-on-select
|
46
|
-
condition="tcpi.f_user_type = '{}'"></v-select>
|
47
|
-
</div>
|
48
|
-
<div class="col-sm-4 form-group" style="margin: 0">
|
49
|
-
<role-selector-safe
|
50
|
-
role-name="安检员"
|
51
|
-
:resobjprop.sync="$parent.$parent.resids"
|
52
|
-
role-lable="安 检 员 "
|
53
|
-
@re-res="$parent.$parent.getRes"
|
54
|
-
:value.sync="model.f_checker_id"
|
55
|
-
v-model="model.f_checker_id"
|
56
|
-
condition="tcp.f_checker_name = '{}'">
|
57
|
-
</role-selector-safe>
|
58
|
-
</div>
|
59
|
-
<div style="float: right">
|
60
|
-
<export-excel-safe :data="$parent.$parent.searchData"
|
61
|
-
:field="$parent.$parent.excelHeaders"
|
62
|
-
progress="safeGetExportProgress"
|
63
|
-
sqlurl="rs/logic/SafeExportExcel" sql-name="safeDetail" template-name='安检情况明细'
|
64
|
-
:choose-col="true"></export-excel-safe>
|
65
|
-
</div>
|
66
|
-
<print-data-safe :sum-field="$parent.$parent.excelHeaders" :model="$parent.$parent.print_model"
|
67
|
-
:field="$parent.$parent.excelHeaders"
|
68
|
-
:defaultfield="$parent.$parent.defaultPrint"
|
69
|
-
:titletable="'安检情况明细'" :starthead="$parent.$parent.getstart"
|
70
|
-
></print-data-safe>
|
71
|
-
<button class="button_spacing button_search" @click="search()">查询</button>
|
72
|
-
</div>
|
73
|
-
</div>
|
74
|
-
</criteria>
|
75
|
-
<data-grid class="list_area table_sy" style="overflow: hidden" :model="model" partial='list' v-ref:grid>
|
76
|
-
<template partial='head'>
|
77
|
-
<tr>
|
78
|
-
<th>
|
79
|
-
<nobr>序号</nobr>
|
80
|
-
</th>
|
81
|
-
<th>
|
82
|
-
<nobr>小区名称</nobr>
|
83
|
-
</th>
|
84
|
-
<th>
|
85
|
-
<nobr>计划安检总户数</nobr>
|
86
|
-
</th>
|
87
|
-
<th>
|
88
|
-
<nobr>申请安检数</nobr>
|
89
|
-
</th>
|
90
|
-
<th>
|
91
|
-
<nobr>未检户数</nobr>
|
92
|
-
</th>
|
93
|
-
<th>
|
94
|
-
<nobr>已检户数</nobr>
|
95
|
-
</th>
|
96
|
-
<th>
|
97
|
-
<nobr>入户户数</nobr>
|
98
|
-
</th>
|
99
|
-
<th>
|
100
|
-
<nobr>到访不遇-1次</nobr>
|
101
|
-
</th>
|
102
|
-
<th>
|
103
|
-
<nobr>到访不遇-2次</nobr>
|
104
|
-
</th>
|
105
|
-
<th>
|
106
|
-
<nobr>到访不遇-3次</nobr>
|
107
|
-
</th>
|
108
|
-
<th>
|
109
|
-
<nobr>到访不遇小计</nobr>
|
110
|
-
</th>
|
111
|
-
<th>
|
112
|
-
<nobr>拒检户数</nobr>
|
113
|
-
</th>
|
114
|
-
<th>
|
115
|
-
<nobr>安检率</nobr>
|
116
|
-
</th>
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
</
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
<td style="text-align: center">{{
|
128
|
-
<td style="text-align: center">{{ row.
|
129
|
-
<td style="text-align: center">{{ row.
|
130
|
-
<td style="text-align: center">{{ row.
|
131
|
-
<td style="text-align: center">{{ row.
|
132
|
-
<td style="text-align: center">{{ row.
|
133
|
-
<td style="text-align: center">{{ row.
|
134
|
-
|
135
|
-
|
136
|
-
<td style="text-align: center"
|
137
|
-
<td style="text-align: center">{{
|
138
|
-
<td style="text-align: center">{{
|
139
|
-
<td style="text-align: center">{{
|
140
|
-
|
141
|
-
<td style="text-align: center">{{
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
<td style="text-align: center">{{ model.sums.
|
146
|
-
<td style="text-align: center">{{ model.sums.
|
147
|
-
<td style="text-align: center">{{ model.sums.
|
148
|
-
|
149
|
-
<td style="text-align: center">{{ model.sums.
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
'
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
this.print_model.
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
this.printshow = false
|
257
|
-
}
|
258
|
-
},
|
259
|
-
computed: {
|
260
|
-
getstart() {
|
261
|
-
return `开始时间:${this.$refs.paged.$refs.criteria.model.start_time} 结束时间:${this.$refs.paged.$refs.criteria.model.end_time}`
|
262
|
-
},
|
263
|
-
}
|
264
|
-
}
|
265
|
-
</script>
|
266
|
-
|
267
|
-
<style scoped>
|
268
|
-
|
269
|
-
</style>
|
1
|
+
<template>
|
2
|
+
<div class="flex-row">
|
3
|
+
<div class="basic-main">
|
4
|
+
<criteria-paged :model="model" v-ref:paged>
|
5
|
+
<criteria partial='criteria' class="search_area" @condition-changed='$parent.selfSearch' v-ref:criteria>
|
6
|
+
<div partial>
|
7
|
+
<div class="row">
|
8
|
+
<div class="form-group col-sm-4">
|
9
|
+
<label class="font_normal_body">开始时间:</label>
|
10
|
+
<datepicker
|
11
|
+
placeholder='请选择'
|
12
|
+
style="width:60%"
|
13
|
+
:disabled-days-of-week="[]"
|
14
|
+
:format="'yyyy-MM-dd'"
|
15
|
+
:show-rest-button="reset"
|
16
|
+
:value.sync="model.start_time"
|
17
|
+
v-model="model.start_time"
|
18
|
+
condition="tcp.f_create_time >= '{} 00:00:00'">
|
19
|
+
</datepicker>
|
20
|
+
</div>
|
21
|
+
<div class="form-group col-sm-4">
|
22
|
+
<label class="font_normal_body">结束时间:</label>
|
23
|
+
<datepicker
|
24
|
+
placeholder='请选择'
|
25
|
+
:disabled-days-of-week="[]"
|
26
|
+
style="width:60%"
|
27
|
+
:format="'yyyy-MM-dd'"
|
28
|
+
:show-rest-button="reset"
|
29
|
+
:value.sync="model.end_time"
|
30
|
+
v-model="model.end_time"
|
31
|
+
condition="tcp.f_create_time <= '{} 23:59:59'">
|
32
|
+
</datepicker>
|
33
|
+
</div>
|
34
|
+
<div class="col-sm-4 form-group">
|
35
|
+
<label class="font_normal_body">小区名称:</label>
|
36
|
+
<input style="width: 60%" class="input_search" v-model="model.f_residential_area"
|
37
|
+
placeholder="请输入小区(可模糊查询)" condition="tcpi.f_residential_area like '%{}%'">
|
38
|
+
</div>
|
39
|
+
<div class="form-group col-sm-4">
|
40
|
+
<label class="font_normal_body">用户类型</label>
|
41
|
+
<v-select :value.sync="model.f_user_type" v-model='model.f_user_type'
|
42
|
+
:value-single="true" style="width: 60%"
|
43
|
+
class="select_list select"
|
44
|
+
:options='$parent.$parent.user_types' placeholder='用户类型'
|
45
|
+
close-on-select
|
46
|
+
condition="tcpi.f_user_type = '{}'"></v-select>
|
47
|
+
</div>
|
48
|
+
<div class="col-sm-4 form-group" style="margin: 0">
|
49
|
+
<role-selector-safe
|
50
|
+
role-name="安检员"
|
51
|
+
:resobjprop.sync="$parent.$parent.resids"
|
52
|
+
role-lable="安 检 员 "
|
53
|
+
@re-res="$parent.$parent.getRes"
|
54
|
+
:value.sync="model.f_checker_id"
|
55
|
+
v-model="model.f_checker_id"
|
56
|
+
condition="tcp.f_checker_name = '{}'">
|
57
|
+
</role-selector-safe>
|
58
|
+
</div>
|
59
|
+
<div style="float: right">
|
60
|
+
<export-excel-safe :data="$parent.$parent.searchData"
|
61
|
+
:field="$parent.$parent.excelHeaders"
|
62
|
+
progress="safeGetExportProgress"
|
63
|
+
sqlurl="rs/logic/SafeExportExcel" sql-name="safeDetail" template-name='安检情况明细'
|
64
|
+
:choose-col="true"></export-excel-safe>
|
65
|
+
</div>
|
66
|
+
<print-data-safe :sum-field="$parent.$parent.excelHeaders" :model="$parent.$parent.print_model"
|
67
|
+
:field="$parent.$parent.excelHeaders"
|
68
|
+
:defaultfield="$parent.$parent.defaultPrint"
|
69
|
+
:titletable="'安检情况明细'" :starthead="$parent.$parent.getstart"
|
70
|
+
></print-data-safe>
|
71
|
+
<button class="button_spacing button_search" @click="search()">查询</button>
|
72
|
+
</div>
|
73
|
+
</div>
|
74
|
+
</criteria>
|
75
|
+
<data-grid class="list_area table_sy" style="overflow: hidden" :model="model" partial='list' v-ref:grid>
|
76
|
+
<template partial='head'>
|
77
|
+
<tr>
|
78
|
+
<th>
|
79
|
+
<nobr>序号</nobr>
|
80
|
+
</th>
|
81
|
+
<th>
|
82
|
+
<nobr>小区名称</nobr>
|
83
|
+
</th>
|
84
|
+
<th>
|
85
|
+
<nobr>计划安检总户数</nobr>
|
86
|
+
</th>
|
87
|
+
<th>
|
88
|
+
<nobr>申请安检数</nobr>
|
89
|
+
</th>
|
90
|
+
<th>
|
91
|
+
<nobr>未检户数</nobr>
|
92
|
+
</th>
|
93
|
+
<th>
|
94
|
+
<nobr>已检户数</nobr>
|
95
|
+
</th>
|
96
|
+
<th>
|
97
|
+
<nobr>入户户数</nobr>
|
98
|
+
</th>
|
99
|
+
<th>
|
100
|
+
<nobr>到访不遇-1次</nobr>
|
101
|
+
</th>
|
102
|
+
<th>
|
103
|
+
<nobr>到访不遇-2次</nobr>
|
104
|
+
</th>
|
105
|
+
<th>
|
106
|
+
<nobr>到访不遇-3次</nobr>
|
107
|
+
</th>
|
108
|
+
<th>
|
109
|
+
<nobr>到访不遇小计</nobr>
|
110
|
+
</th>
|
111
|
+
<th>
|
112
|
+
<nobr>拒检户数</nobr>
|
113
|
+
</th>
|
114
|
+
<th>
|
115
|
+
<nobr>安检率</nobr>
|
116
|
+
</th>
|
117
|
+
</tr>
|
118
|
+
</template>
|
119
|
+
<template partial='body'>
|
120
|
+
|
121
|
+
<td style="text-align: center">{{ $index + 1 }}</td>
|
122
|
+
<td style="text-align: center">{{ row.f_residential_area }}</td>
|
123
|
+
<td style="text-align: center">{{ row.totalcount }}</td>
|
124
|
+
<td style="text-align: center">{{ row.sqajcount }}</td>
|
125
|
+
<td style="text-align: center">{{ row.wjcount }}</td>
|
126
|
+
<td style="text-align: center">{{ row.yjcount }}</td>
|
127
|
+
<td style="text-align: center">{{ row.rhcount }}</td>
|
128
|
+
<td style="text-align: center">{{ row.dfbycount1 }}</td>
|
129
|
+
<td style="text-align: center">{{ row.dfbycount2 }}</td>
|
130
|
+
<td style="text-align: center">{{ row.dfbycount3 }}</td>
|
131
|
+
<td style="text-align: center">{{ row.unique_dfby_count }}</td>
|
132
|
+
<td style="text-align: center">{{ row.jjcount }}</td>
|
133
|
+
<td style="text-align: center">{{ row.check_bv }}</td>
|
134
|
+
</template>
|
135
|
+
<template partial="foot">
|
136
|
+
<td style="text-align: center" colspan="2"><span><b>合计:</b></span></td>
|
137
|
+
<td style="text-align: center">{{ model.sums.totalcount }}</td>
|
138
|
+
<td style="text-align: center">{{ model.sums.sqajcount }}</td>
|
139
|
+
<td style="text-align: center">{{ model.sums.wjcount }}</td>
|
140
|
+
|
141
|
+
<td style="text-align: center">{{ model.sums.yjcount }}</td>
|
142
|
+
|
143
|
+
<td style="text-align: center">{{ model.sums.rhcount }}</td>
|
144
|
+
|
145
|
+
<td style="text-align: center">{{ model.sums.dfbycount1 }}</td>
|
146
|
+
<td style="text-align: center">{{ model.sums.dfbycount2 }}</td>
|
147
|
+
<td style="text-align: center">{{ model.sums.dfbycount3 }}</td>
|
148
|
+
<td style="text-align: center">{{ model.sums.unique_dfby_count }}</td>
|
149
|
+
<td style="text-align: center">{{ model.sums.jjcount }}</td>
|
150
|
+
<td style="text-align: center">
|
151
|
+
{{ ((model.sums.yjcount / model.sums.totalcount)*100.0).toFixed(2) }}%
|
152
|
+
</td>
|
153
|
+
|
154
|
+
</template>
|
155
|
+
</data-grid>
|
156
|
+
</criteria-paged>
|
157
|
+
</div>
|
158
|
+
</div>
|
159
|
+
</template>
|
160
|
+
|
161
|
+
<script>
|
162
|
+
import {PagedList} from "vue-client";
|
163
|
+
|
164
|
+
export default {
|
165
|
+
name: "safeDetail",
|
166
|
+
title: "安检情况明细",
|
167
|
+
data() {
|
168
|
+
|
169
|
+
return {
|
170
|
+
model: new PagedList("/rs/sql/safeDetail", 999, {orgid: this.$login.f.orgid}, {
|
171
|
+
totalcount: '',
|
172
|
+
sqajcount:'',
|
173
|
+
wjcount: '',
|
174
|
+
yjcount: '',
|
175
|
+
rhcount: '',
|
176
|
+
dfbycount1: '',
|
177
|
+
dfbycount2: '',
|
178
|
+
dfbycount3: '',
|
179
|
+
unique_dfby_count: '',
|
180
|
+
jjcount: ''
|
181
|
+
}),
|
182
|
+
resids: {},
|
183
|
+
searchData: {
|
184
|
+
condition: "1=1",
|
185
|
+
orgid: this.$login.f.orgid
|
186
|
+
},
|
187
|
+
print_model:{},
|
188
|
+
user_types: [{label:'全部',value:''},{label:'民用',value:'民用'},{label:'非民用',value:'非民用'}],
|
189
|
+
excelHeaders: {
|
190
|
+
'f_residential_area': '小区名称',
|
191
|
+
'totalcount': '计划安检总户数',
|
192
|
+
'sqajcount': '申请安检数',
|
193
|
+
'wjcount': '未检户数',
|
194
|
+
'yjcount': '已检户数',
|
195
|
+
'rhcount': '入户户数',
|
196
|
+
'dfbycount1': '到访不遇-1次',
|
197
|
+
'dfbycount2': '到访不遇-2次',
|
198
|
+
'dfbycount3': '到访不遇-3次',
|
199
|
+
'unique_dfby_count': '到访不遇小计',
|
200
|
+
'jjcount': '拒检户数',
|
201
|
+
'check_bv':'安检率'
|
202
|
+
},
|
203
|
+
printshow: false,
|
204
|
+
defaultPrint: ['f_residential_area', 'totalcount', 'sqajcount','wjcount', 'rhcount','dfbycount1','dfbycount2','dfbycount3','unique_dfby_count','jjcount','check_bv'],
|
205
|
+
sumsmodel: {},
|
206
|
+
}
|
207
|
+
},
|
208
|
+
ready() {
|
209
|
+
// this.model.search('1=1')
|
210
|
+
},
|
211
|
+
methods: {
|
212
|
+
async selfSearch(args) {
|
213
|
+
await this.model.search(args.condition, args.model, args.condValue)
|
214
|
+
this.searchData.condition = args.condition
|
215
|
+
this.sumsmodel = this.$refs.paged.$refs.grid.model.sums;
|
216
|
+
this.print_model = JSON.parse(JSON.stringify(this.$refs.paged.$refs.grid.model))
|
217
|
+
this.print_model.rows.push({
|
218
|
+
f_residential_area:'合计',
|
219
|
+
totalcount: this.sumsmodel.totalcount,
|
220
|
+
sqajcount: this.sumsmodel.sqajcount,
|
221
|
+
wjcount: this.sumsmodel.wjcount,
|
222
|
+
yjcount: this.sumsmodel.yjcount,
|
223
|
+
rhcount: this.sumsmodel.rhcount,
|
224
|
+
dfbycount1: this.sumsmodel.dfbycount1,
|
225
|
+
dfbycount2: this.sumsmodel.dfbycount2,
|
226
|
+
dfbycount3: this.sumsmodel.dfbycount3,
|
227
|
+
unique_dfby_count: this.sumsmodel.unique_dfby_count,
|
228
|
+
check_bv:`${((this.sumsmodel.yjcount / this.sumsmodel.totalcount)*100.0).toFixed(2)}%`
|
229
|
+
})
|
230
|
+
this.print_model.totalPage = 0
|
231
|
+
},
|
232
|
+
getRes(obj) {
|
233
|
+
//tag
|
234
|
+
this.resids = {res: obj.res[0], resids: obj.resids[0]}
|
235
|
+
this.model.f_filialeids = this.$login.convertToIn(obj.resids);
|
236
|
+
},
|
237
|
+
// 打印
|
238
|
+
stamp() {
|
239
|
+
this.printshow = true
|
240
|
+
},
|
241
|
+
close() {
|
242
|
+
this.printshow = false
|
243
|
+
}
|
244
|
+
},
|
245
|
+
computed: {
|
246
|
+
getstart() {
|
247
|
+
return `开始时间:${this.$refs.paged.$refs.criteria.model.start_time} 结束时间:${this.$refs.paged.$refs.criteria.model.end_time}`
|
248
|
+
},
|
249
|
+
}
|
250
|
+
}
|
251
|
+
</script>
|
252
|
+
|
253
|
+
<style scoped>
|
254
|
+
|
255
|
+
</style>
|
@@ -1,29 +1,31 @@
|
|
1
|
-
// 分公司特殊组件页面注册
|
2
|
-
import Vue from "vue";
|
3
|
-
|
4
|
-
//手机特殊目录注册到该文件中
|
5
|
-
let specialComp = {
|
6
|
-
"plan-manage":(resolve) => { require(['./pc/PlanManage'], resolve) },
|
7
|
-
"role-selector-safe":(resolve) => { require(['./pc/RoleSelector'], resolve) },
|
8
|
-
"check-
|
9
|
-
|
10
|
-
"
|
11
|
-
|
12
|
-
"safe-
|
13
|
-
|
14
|
-
"
|
15
|
-
|
16
|
-
"community-
|
17
|
-
"
|
18
|
-
"
|
19
|
-
"safe-statistics
|
20
|
-
"safe-statistics-
|
21
|
-
"
|
22
|
-
"
|
23
|
-
"
|
24
|
-
}
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
1
|
+
// 分公司特殊组件页面注册
|
2
|
+
import Vue from "vue";
|
3
|
+
|
4
|
+
//手机特殊目录注册到该文件中
|
5
|
+
let specialComp = {
|
6
|
+
"plan-manage":(resolve) => { require(['./pc/PlanManage'], resolve) },
|
7
|
+
"role-selector-safe":(resolve) => { require(['./pc/RoleSelector'], resolve) },
|
8
|
+
"select-check-plan":(resolve) => { require(['./pc/SelectCheckPlan.vue'], resolve) },
|
9
|
+
"check-plan":(resolve) => { require(['./pc/CheckPlan.vue'], resolve) },
|
10
|
+
"check-user-list":(resolve) => { require(['./pc/checkUserList'], resolve) },
|
11
|
+
'paper-main': (resolve) => { require(['./pc/PaperList'], resolve) },
|
12
|
+
"safe-table":(resolve) => { require(['./pc/safeTable'], resolve) },
|
13
|
+
"safe-detail":(resolve) => { require(['./pc/safeDetail'], resolve) },
|
14
|
+
"safe-defect-paper-new":(resolve) => { require(['./pc/DefectPaperNew.vue'], resolve) },
|
15
|
+
'check-search-user':(resolve) => {require(['./pc/CheckSearchUser'], resolve)},
|
16
|
+
"community-detail":(resolve) => { require(['./pc/communityDetail'], resolve) },
|
17
|
+
"community-type-detail-g":(resolve) => { require(['./pc/communityTypeDetailG'], resolve) },
|
18
|
+
"community-type-detail-m":(resolve) => { require(['./pc/communityTypeDetailM'], resolve) },
|
19
|
+
"safe-statistics":(resolve) => { require(['./pc/safeStatistics'], resolve) },
|
20
|
+
"safe-statistics-day":(resolve) => { require(['./pc/safeStatisticsDay'], resolve) },
|
21
|
+
"safe-statistics-month":(resolve) => { require(['./pc/safeStatisticsMonth'], resolve) },
|
22
|
+
"safe-statistics-year":(resolve) => { require(['./pc/safeStatisticsYear'], resolve) },
|
23
|
+
"no-checkplan-safecheck":(resolve) => { require(['./pc/NoCheckplanSafecheck'], resolve) },
|
24
|
+
"print-data-safe":(resolve) => { require(['./pc/PrintData'], resolve) },
|
25
|
+
"print-table-safe":(resolve) => { require(['./pc/PrintTable'], resolve) },
|
26
|
+
}
|
27
|
+
exports.specialComp = specialComp
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
|