safecheck-client 3.0.33-75 → 3.0.33-76
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 +1 -1
- package/src/filiale/yongzhou/pc/CheckSearchUser.vue +1092 -1092
- package/src/filiale/yongzhou/pc/NoCheckplanSafecheck.vue +18 -13
- package/src/filiale/yongzhou/pc/PaperList.vue +798 -798
- package/src/filiale/yongzhou/pc/safeDetail.vue +14 -9
- package/src/filiale/yongzhou/pc/safeStatistics.vue +175 -175
- package/src/filiale/yongzhou/pc/safeStatisticsYear.vue +135 -135
@@ -43,9 +43,9 @@
|
|
43
43
|
</div>
|
44
44
|
<div class="row">
|
45
45
|
<div class="form-group col-sm-4">
|
46
|
-
<label class="font_normal_body"
|
46
|
+
<label class="font_normal_body">计划开始:</label>
|
47
47
|
<datepicker
|
48
|
-
placeholder='
|
48
|
+
placeholder='计划开始'
|
49
49
|
style="width:60%"
|
50
50
|
:disabled-days-of-week="[]"
|
51
51
|
:format="'yyyy-MM-dd'"
|
@@ -56,9 +56,9 @@
|
|
56
56
|
</datepicker>
|
57
57
|
</div>
|
58
58
|
<div class="form-group col-sm-4">
|
59
|
-
<label class="font_normal_body"
|
59
|
+
<label class="font_normal_body">计划结束:</label>
|
60
60
|
<datepicker
|
61
|
-
placeholder='
|
61
|
+
placeholder='计划结束'
|
62
62
|
:disabled-days-of-week="[]"
|
63
63
|
style="width:60%"
|
64
64
|
:format="'yyyy-MM-dd'"
|
@@ -71,8 +71,8 @@
|
|
71
71
|
</div>
|
72
72
|
<div class="row">
|
73
73
|
<div class="col-sm-4 form-group">
|
74
|
-
<label for="startDate" class="font_normal_body"
|
75
|
-
<datepicker id="startDate" placeholder="
|
74
|
+
<label for="startDate" class="font_normal_body">安检开始:</label>
|
75
|
+
<datepicker id="startDate" placeholder="安检开始"
|
76
76
|
v-model="model.checkstart"
|
77
77
|
:value.sync="model.checkstart"
|
78
78
|
style="width: 60%;"
|
@@ -83,8 +83,8 @@
|
|
83
83
|
</datepicker>
|
84
84
|
</div>
|
85
85
|
<div class="col-sm-4 form-group">
|
86
|
-
<label for="endDate" class="font_normal_body"
|
87
|
-
<datepicker id="endDate" placeholder="
|
86
|
+
<label for="endDate" class="font_normal_body">安检结束:</label>
|
87
|
+
<datepicker id="endDate" placeholder="安检结束"
|
88
88
|
v-model="model.checkend"
|
89
89
|
:value.sync="model.checkend"
|
90
90
|
:disabled-days-of-Week="[]"
|
@@ -220,7 +220,7 @@
|
|
220
220
|
<input style="width: 60%" class="input_search" v-model="$parent.$parent.$parent.modalSearchData.f_residential_area">
|
221
221
|
</div>
|
222
222
|
<div class="col-sm-4 form-group">
|
223
|
-
<label class="font_normal_body"
|
223
|
+
<label class="font_normal_body">安 检 员</label>
|
224
224
|
<input style="width: 60%" class="input_search" v-model="$parent.$parent.$parent.modalSearchData.f_checker">
|
225
225
|
</div>
|
226
226
|
<div class="col-sm-4 form-group">
|
@@ -242,7 +242,7 @@
|
|
242
242
|
></v-select>
|
243
243
|
</div>
|
244
244
|
<div class="col-sm-4 form-group">
|
245
|
-
<label class="font_normal_body"
|
245
|
+
<label class="font_normal_body">到访次数</label>
|
246
246
|
<input style="width: 60%" class="input_search" v-model="$parent.$parent.$parent.modalSearchData.f_check_version">
|
247
247
|
</div>
|
248
248
|
<div style="float: right">
|
@@ -282,6 +282,9 @@
|
|
282
282
|
<th>
|
283
283
|
<nobr>安检员</nobr>
|
284
284
|
</th>
|
285
|
+
<th>
|
286
|
+
<nobr>计划名称</nobr>
|
287
|
+
</th>
|
285
288
|
<th>
|
286
289
|
<nobr>用户类型</nobr>
|
287
290
|
</th>
|
@@ -298,6 +301,7 @@
|
|
298
301
|
<td style="text-align:center">{{row.f_check_version}}</td>
|
299
302
|
<td style="text-align:center">{{row.f_last_check_date}}</td>
|
300
303
|
<td style="text-align:center">{{row.f_checker}}</td>
|
304
|
+
<td style="text-align:center">{{row.f_plan_name}}</td>
|
301
305
|
<td style="text-align:center">{{row.f_user_type}}</td>
|
302
306
|
<td style="text-align:center">{{row.f_last_check_state}}</td>
|
303
307
|
</template>
|
@@ -324,7 +328,7 @@ export default {
|
|
324
328
|
return {
|
325
329
|
modal_show:false,
|
326
330
|
modalModel: new PagedList('rs/sql/safe_singleTable_OrderBy', 15, {
|
327
|
-
items: '"tcpi.*,tcp.f_checker"',
|
331
|
+
items: '"tcpi.*,tcp.f_checker,tcp.f_plan_name"',
|
328
332
|
tablename: '"t_check_plan_item tcpi left join t_check_plan tcp on tcpi.f_plan_id = tcp.id"',
|
329
333
|
orderitem: '"1"'
|
330
334
|
}),
|
@@ -335,7 +339,7 @@ export default {
|
|
335
339
|
}),
|
336
340
|
modalSearchData:{},
|
337
341
|
modalSearchExcelData:{
|
338
|
-
items: "tcpi.*,tcp.f_checker",
|
342
|
+
items: "tcpi.*,tcp.f_checker,tcp.f_plan_name",
|
339
343
|
tablename: "t_check_plan_item tcpi left join t_check_plan tcp on tcpi.f_plan_id = tcp.id",
|
340
344
|
orderitem: "f_userinfo_code"
|
341
345
|
},
|
@@ -348,6 +352,7 @@ export default {
|
|
348
352
|
'f_check_version': '到访不遇次数',
|
349
353
|
'f_last_check_date': '安检时间',
|
350
354
|
'f_checker': '安检员',
|
355
|
+
'f_plan_name':"计划名称",
|
351
356
|
'f_user_type': '用户类型',
|
352
357
|
'f_last_check_state': '安检状态'
|
353
358
|
},
|
@@ -395,7 +400,7 @@ export default {
|
|
395
400
|
},
|
396
401
|
modalSearch () {
|
397
402
|
this.modalModel = new PagedList('rs/sql/safe_singleTable_OrderBy', 15, {
|
398
|
-
items: '"tcpi.*,tcp.f_checker"',
|
403
|
+
items: '"tcpi.*,tcp.f_checker,tcp.f_plan_name"',
|
399
404
|
tablename: '"t_check_plan_item tcpi left join t_check_plan tcp on tcpi.f_plan_id = tcp.id"',
|
400
405
|
orderitem: '"1"'
|
401
406
|
})
|