safecheck-client 3.0.34-54 → 3.0.34-56
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +1 -1
- package/src/components/android/QRCode/QRCodeBinding.vue +300 -300
- package/src/components/android/QRCode/QRCodePage.vue +212 -212
- package/src/components/android/examples/UserExamples.vue +130 -130
- package/src/filiale/tongchuan/pc/CheckPlanCountChartArea.vue +3 -1
- package/src/filiale/tongchuan/pc/DefectPaperWeiXiu.vue +6 -2
- package/src/filiale/tongchuan/pc/HiddenSituation.vue +3 -1
- package/src/filiale/tongchuan/pc/NewCheckpaper.vue +13 -22
- package/src/filiale/tongchuan/pc/SelectCheckPlan.vue +5 -2
- package/src/filiale/yangchunboneng/pc/CheckBookSearchUser.vue +8 -8
- package/src/filiale/yangchunboneng/pc/CheckBookUser.vue +6 -6
- package/src/filiale/yangchunboneng/pc/CheckSearchUser.vue +10 -10
- package/src/filiale/yangchunboneng/pc/DefectPaperNew.vue +10 -10
- package/src/filiale/yangchunboneng/pc/PaperDefectMain.vue +6 -6
- package/src/filiale/yangchunboneng/pc/PaperList.vue +6 -6
- package/src/main-/345/215/225/351/241/265/351/235/242/346/211/223/345/214/205/347/224/250.js +1 -1
- package/src/safecheck-page.js +10 -0
@@ -1,130 +1,130 @@
|
|
1
|
-
<template>
|
2
|
-
<div class="work-badge" style="height: 100%">
|
3
|
-
<div class="badge-top" style="height: 33%">
|
4
|
-
<div class="badge-number">NO.{{ f_head_code }}</div>
|
5
|
-
</div>
|
6
|
-
<div class="badge-middle" style="height: 33%">
|
7
|
-
<img class="badge-image" :src="f_head_pic" alt="Badge Image">
|
8
|
-
<h1 class="name">{{ f_head_name }}</h1>
|
9
|
-
<div class="position">{{ f_head_post }}</div>
|
10
|
-
</div>
|
11
|
-
<div class="badge-bottom" style="height: 33%">
|
12
|
-
<div class="contact">
|
13
|
-
<img class="phone-icon" src="../../../assets/123.png" style="height: 30px;width: 30px" alt="Phone Icon">
|
14
|
-
<span style="font-size: 30px">{{ f_head_phone }}</span>
|
15
|
-
</div>
|
16
|
-
</div>
|
17
|
-
</div>
|
18
|
-
</template>
|
19
|
-
<script>
|
20
|
-
import {HttpResetClass} from "vue-client";
|
21
|
-
|
22
|
-
export default {
|
23
|
-
name: 'WorkBadge',
|
24
|
-
title:'WorkBadge',
|
25
|
-
data () {
|
26
|
-
return {
|
27
|
-
// 默认值或初始状态
|
28
|
-
f_head_pic: '',
|
29
|
-
f_head_code: '',
|
30
|
-
f_head_name: '',
|
31
|
-
f_head_post: '',
|
32
|
-
f_head_phone: ''
|
33
|
-
};
|
34
|
-
},
|
35
|
-
async ready () {
|
36
|
-
console.log(window.location.href)
|
37
|
-
let id = ''
|
38
|
-
let url = window.location.href
|
39
|
-
if (url.includes('id')){
|
40
|
-
const urlObj = new URL(url);
|
41
|
-
id = urlObj.searchParams.get('id');
|
42
|
-
let QRCode = await new HttpResetClass().load('post',`rs/sql/tel_singleTable_OrderBy`,{data: {
|
43
|
-
items: 'tqr.*,tf.f_downloadpath as url',
|
44
|
-
tablename: 't_qr_code tqr left join t_files tf on tf.f_businessid = tqr.id and f_table_name = \'t_qr_code\'',
|
45
|
-
condition: `f_head_code = '${id}'`,
|
46
|
-
orderitem: '1'
|
47
|
-
}})
|
48
|
-
if (QRCode && QRCode.data && QRCode.data.length > 0){
|
49
|
-
if (QRCode.data[0].url){
|
50
|
-
this.f_head_pic = QRCode.data[0].url
|
51
|
-
}else {
|
52
|
-
this.f_head_pic = `/rs/image/file/${QRCode.data[0].f_head_pic}`
|
53
|
-
}
|
54
|
-
this.f_head_code = QRCode.data[0].f_head_code
|
55
|
-
this.f_head_name = QRCode.data[0].f_head_name
|
56
|
-
this.f_head_post = QRCode.data[0].f_head_post
|
57
|
-
this.f_head_phone = QRCode.data[0].f_head_phone
|
58
|
-
}else {
|
59
|
-
console.log('获取二维码信息失败')
|
60
|
-
console.log(QRCode)
|
61
|
-
}
|
62
|
-
}
|
63
|
-
}
|
64
|
-
};
|
65
|
-
</script>
|
66
|
-
<style scoped>
|
67
|
-
.work-badge {
|
68
|
-
display: flex;
|
69
|
-
flex-direction: column;
|
70
|
-
background-image: url('../../../assets/f8632d3c8c4c1cb68e99da754cab1a7.png');
|
71
|
-
align-items: center;
|
72
|
-
background-color: #007BFF;
|
73
|
-
color: white;
|
74
|
-
padding: 20px;
|
75
|
-
border-radius: 10px;
|
76
|
-
}
|
77
|
-
|
78
|
-
.badge-top {
|
79
|
-
display: flex;
|
80
|
-
align-items: center;
|
81
|
-
justify-content: space-between;
|
82
|
-
width: 100%;
|
83
|
-
margin-bottom: 20px;
|
84
|
-
}
|
85
|
-
|
86
|
-
.badge-image {
|
87
|
-
width: 150px;
|
88
|
-
height: 150px;
|
89
|
-
margin-right: 20px;
|
90
|
-
}
|
91
|
-
|
92
|
-
.badge-number {
|
93
|
-
font-size: 24px;
|
94
|
-
float: left;
|
95
|
-
text-align: left;
|
96
|
-
font-weight: bold;
|
97
|
-
}
|
98
|
-
|
99
|
-
.badge-middle {
|
100
|
-
text-align: center;
|
101
|
-
margin-bottom: 20px;
|
102
|
-
}
|
103
|
-
|
104
|
-
.name {
|
105
|
-
font-size: 48px;
|
106
|
-
font-weight: bold;
|
107
|
-
margin-bottom: 10px;
|
108
|
-
}
|
109
|
-
|
110
|
-
.position {
|
111
|
-
font-size: 24px;
|
112
|
-
}
|
113
|
-
|
114
|
-
.badge-bottom {
|
115
|
-
display: flex;
|
116
|
-
align-items: center;
|
117
|
-
justify-content: center;
|
118
|
-
}
|
119
|
-
|
120
|
-
.contact {
|
121
|
-
display: flex;
|
122
|
-
align-items: center;
|
123
|
-
}
|
124
|
-
|
125
|
-
.phone-icon {
|
126
|
-
width: 30px;
|
127
|
-
height: 30px;
|
128
|
-
margin-right: 10px;
|
129
|
-
}
|
130
|
-
</style>
|
1
|
+
<template>
|
2
|
+
<div class="work-badge" style="height: 100%">
|
3
|
+
<div class="badge-top" style="height: 33%">
|
4
|
+
<div class="badge-number">NO.{{ f_head_code }}</div>
|
5
|
+
</div>
|
6
|
+
<div class="badge-middle" style="height: 33%">
|
7
|
+
<img class="badge-image" :src="f_head_pic" alt="Badge Image">
|
8
|
+
<h1 class="name">{{ f_head_name }}</h1>
|
9
|
+
<div class="position">{{ f_head_post }}</div>
|
10
|
+
</div>
|
11
|
+
<div class="badge-bottom" style="height: 33%">
|
12
|
+
<div class="contact">
|
13
|
+
<img class="phone-icon" src="../../../assets/123.png" style="height: 30px;width: 30px" alt="Phone Icon">
|
14
|
+
<span style="font-size: 30px">{{ f_head_phone }}</span>
|
15
|
+
</div>
|
16
|
+
</div>
|
17
|
+
</div>
|
18
|
+
</template>
|
19
|
+
<script>
|
20
|
+
import {HttpResetClass} from "vue-client";
|
21
|
+
|
22
|
+
export default {
|
23
|
+
name: 'WorkBadge',
|
24
|
+
title:'WorkBadge',
|
25
|
+
data () {
|
26
|
+
return {
|
27
|
+
// 默认值或初始状态
|
28
|
+
f_head_pic: '',
|
29
|
+
f_head_code: '',
|
30
|
+
f_head_name: '',
|
31
|
+
f_head_post: '',
|
32
|
+
f_head_phone: ''
|
33
|
+
};
|
34
|
+
},
|
35
|
+
async ready () {
|
36
|
+
console.log(window.location.href)
|
37
|
+
let id = ''
|
38
|
+
let url = window.location.href
|
39
|
+
if (url.includes('id')){
|
40
|
+
const urlObj = new URL(url);
|
41
|
+
id = urlObj.searchParams.get('id');
|
42
|
+
let QRCode = await new HttpResetClass().load('post',`rs/sql/tel_singleTable_OrderBy`,{data: {
|
43
|
+
items: 'tqr.*,tf.f_downloadpath as url',
|
44
|
+
tablename: 't_qr_code tqr left join t_files tf on tf.f_businessid = tqr.id and f_table_name = \'t_qr_code\'',
|
45
|
+
condition: `f_head_code = '${id}'`,
|
46
|
+
orderitem: '1'
|
47
|
+
}})
|
48
|
+
if (QRCode && QRCode.data && QRCode.data.length > 0){
|
49
|
+
if (QRCode.data[0].url){
|
50
|
+
this.f_head_pic = QRCode.data[0].url
|
51
|
+
}else {
|
52
|
+
this.f_head_pic = `/rs/image/file/${QRCode.data[0].f_head_pic}`
|
53
|
+
}
|
54
|
+
this.f_head_code = QRCode.data[0].f_head_code
|
55
|
+
this.f_head_name = QRCode.data[0].f_head_name
|
56
|
+
this.f_head_post = QRCode.data[0].f_head_post
|
57
|
+
this.f_head_phone = QRCode.data[0].f_head_phone
|
58
|
+
}else {
|
59
|
+
console.log('获取二维码信息失败')
|
60
|
+
console.log(QRCode)
|
61
|
+
}
|
62
|
+
}
|
63
|
+
}
|
64
|
+
};
|
65
|
+
</script>
|
66
|
+
<style scoped>
|
67
|
+
.work-badge {
|
68
|
+
display: flex;
|
69
|
+
flex-direction: column;
|
70
|
+
background-image: url('../../../assets/f8632d3c8c4c1cb68e99da754cab1a7.png');
|
71
|
+
align-items: center;
|
72
|
+
background-color: #007BFF;
|
73
|
+
color: white;
|
74
|
+
padding: 20px;
|
75
|
+
border-radius: 10px;
|
76
|
+
}
|
77
|
+
|
78
|
+
.badge-top {
|
79
|
+
display: flex;
|
80
|
+
align-items: center;
|
81
|
+
justify-content: space-between;
|
82
|
+
width: 100%;
|
83
|
+
margin-bottom: 20px;
|
84
|
+
}
|
85
|
+
|
86
|
+
.badge-image {
|
87
|
+
width: 150px;
|
88
|
+
height: 150px;
|
89
|
+
margin-right: 20px;
|
90
|
+
}
|
91
|
+
|
92
|
+
.badge-number {
|
93
|
+
font-size: 24px;
|
94
|
+
float: left;
|
95
|
+
text-align: left;
|
96
|
+
font-weight: bold;
|
97
|
+
}
|
98
|
+
|
99
|
+
.badge-middle {
|
100
|
+
text-align: center;
|
101
|
+
margin-bottom: 20px;
|
102
|
+
}
|
103
|
+
|
104
|
+
.name {
|
105
|
+
font-size: 48px;
|
106
|
+
font-weight: bold;
|
107
|
+
margin-bottom: 10px;
|
108
|
+
}
|
109
|
+
|
110
|
+
.position {
|
111
|
+
font-size: 24px;
|
112
|
+
}
|
113
|
+
|
114
|
+
.badge-bottom {
|
115
|
+
display: flex;
|
116
|
+
align-items: center;
|
117
|
+
justify-content: center;
|
118
|
+
}
|
119
|
+
|
120
|
+
.contact {
|
121
|
+
display: flex;
|
122
|
+
align-items: center;
|
123
|
+
}
|
124
|
+
|
125
|
+
.phone-icon {
|
126
|
+
width: 30px;
|
127
|
+
height: 30px;
|
128
|
+
margin-right: 10px;
|
129
|
+
}
|
130
|
+
</style>
|
@@ -6,12 +6,14 @@
|
|
6
6
|
<div class="row">
|
7
7
|
<div class="col-sm-4 form-group">
|
8
8
|
<role-selector-safe
|
9
|
+
:value-multiple="true"
|
10
|
+
:value-close="false"
|
9
11
|
role-name="安检员"
|
10
12
|
role-lable="安 检 员"
|
11
13
|
@re-res="$parent.$parent.getRes"
|
12
14
|
:value.sync="model.f_checker_id"
|
13
15
|
v-model="model.f_checker_id"
|
14
|
-
condition="f_checker_name
|
16
|
+
condition="f_checker_name in {}">
|
15
17
|
</role-selector-safe>
|
16
18
|
</div>
|
17
19
|
<div class="col-sm-2 form-group">
|
@@ -74,12 +74,14 @@
|
|
74
74
|
</div>
|
75
75
|
<div :class="$parent.$parent.style2" style="margin: 0">
|
76
76
|
<role-selector-safe
|
77
|
+
:value-multiple="true"
|
78
|
+
:value-close="false"
|
77
79
|
role-name="安检员"
|
78
80
|
role-lable="安 检 员 "
|
79
81
|
@re-res="$parent.$parent.getRes"
|
80
82
|
:value.sync="model.f_checker_id"
|
81
83
|
v-model="model.f_checker_id"
|
82
|
-
condition="f_checker_name
|
84
|
+
condition="f_checker_name in {}">
|
83
85
|
</role-selector-safe>
|
84
86
|
</div>
|
85
87
|
|
@@ -222,12 +224,14 @@
|
|
222
224
|
|
223
225
|
<div :class="$parent.$parent.style2" style="margin: 0">
|
224
226
|
<role-selector-safe
|
227
|
+
:value-multiple="true"
|
228
|
+
:value-close="false"
|
225
229
|
role-name="安检员"
|
226
230
|
role-lable="安 检 员 "
|
227
231
|
@re-res="$parent.$parent.getRes"
|
228
232
|
:value.sync="model.f_checker_id"
|
229
233
|
v-model="model.f_checker_id"
|
230
|
-
condition="f_checker_name
|
234
|
+
condition="f_checker_name in {}">
|
231
235
|
</role-selector-safe>
|
232
236
|
</div>
|
233
237
|
</div>
|
@@ -6,12 +6,14 @@
|
|
6
6
|
<div class="row">
|
7
7
|
<div class="col-sm-4 form-group">
|
8
8
|
<role-selector-safe
|
9
|
+
:value-multiple="true"
|
10
|
+
:value-close="false"
|
9
11
|
role-name="安检员"
|
10
12
|
role-lable="安 检 员"
|
11
13
|
@re-res="$parent.$parent.getRes"
|
12
14
|
:value.sync="model.f_checker_id"
|
13
15
|
v-model="model.f_checker_id"
|
14
|
-
condition="f_checker_name
|
16
|
+
condition="f_checker_name in {}">
|
15
17
|
</role-selector-safe>
|
16
18
|
</div>
|
17
19
|
<div class="col-sm-2 form-group">
|
@@ -549,11 +549,6 @@ export default {
|
|
549
549
|
},
|
550
550
|
methods: {
|
551
551
|
devicesCollect() {
|
552
|
-
//tag
|
553
|
-
//tag)
|
554
|
-
//tag)
|
555
|
-
//tag
|
556
|
-
|
557
552
|
this.deviceCollects = []
|
558
553
|
let checkResult = '正常'
|
559
554
|
this.result = '正常'
|
@@ -577,26 +572,22 @@ export default {
|
|
577
572
|
if ((items.type === 'selector' || items.type === 'radio' || items.type === 'checkbox') && items.f_item_value != null && items.f_item_value instanceof Array) {
|
578
573
|
for (let i in items.f_item_value) {
|
579
574
|
let f_item_value = items.f_item_value[i]
|
580
|
-
|
581
|
-
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
|
591
|
-
|
592
|
-
|
593
|
-
this.result = '有隐患'
|
594
|
-
defects = `${defects}:${options[option].data}/`
|
595
|
-
// let level = options[option].level
|
575
|
+
for (let j = 0; j < this.config[this.data[device][item].f_device_type].items.length; j++) {
|
576
|
+
if(this.config[this.data[device][item].f_device_type].items[j].lname===items.f_item_name){
|
577
|
+
if(this.config[this.data[device][item].f_device_type].items[j].options){
|
578
|
+
let options = this.config[this.data[device][item].f_device_type].items[j].options
|
579
|
+
for (let option in options) {
|
580
|
+
if (options[option].data === f_item_value) {
|
581
|
+
if (options[option].isdefect === 'true' || options[option].isdefect === true) {
|
582
|
+
checkResult = '有隐患'
|
583
|
+
this.result = '有隐患'
|
584
|
+
defects = `${defects}:${options[option].data}/`
|
585
|
+
}
|
586
|
+
}
|
587
|
+
}
|
596
588
|
}
|
597
589
|
}
|
598
590
|
}
|
599
|
-
//tag)
|
600
591
|
}
|
601
592
|
if (defects != '') {
|
602
593
|
deviceInfos.push(`${items.f_item_name}${defects.substring(0, defects.length - 1)}`)
|
@@ -6,6 +6,8 @@
|
|
6
6
|
<div class="row">
|
7
7
|
<div :class="{'form-group col-sm-6':$parent.$parent.$parent.showItem,'form-group col-sm-4':!$parent.$parent.$parent.showItem}" style="margin: 0">
|
8
8
|
<role-selector-safe
|
9
|
+
:value-multiple="true"
|
10
|
+
:value-close="false"
|
9
11
|
role-name="安检员"
|
10
12
|
role-lable="安 检 员"
|
11
13
|
@re-res="$parent.$parent.getRes"
|
@@ -223,8 +225,9 @@
|
|
223
225
|
condition2 += ` AND f_offsite_time <= '${this.f_end_time} 23:59:59'`
|
224
226
|
}
|
225
227
|
if (this.$refs.paged.$refs.cri.model.f_checker_id){
|
226
|
-
|
227
|
-
|
228
|
+
debugger
|
229
|
+
condition3 += ` AND f_checker in ${this.$refs.paged.$refs.cri.model.f_checker_id} `
|
230
|
+
condition2 += ` AND f_checker_name in ${this.$refs.paged.$refs.cri.model.f_checker_id} `
|
228
231
|
}
|
229
232
|
this.model.f_start_time=this.f_start_time
|
230
233
|
this.model.f_end_time=this.f_end_time
|
@@ -68,11 +68,11 @@
|
|
68
68
|
</div>
|
69
69
|
<div class="row">
|
70
70
|
<div class="form-group col-sm-4" v-show="$parent.$parent.criteriaShow">
|
71
|
-
<label class="font_normal_body"
|
71
|
+
<label class="font_normal_body">首次通气开始</label>
|
72
72
|
<datepicker
|
73
73
|
:value.sync="model.f_gas_date_str"
|
74
74
|
style="width: 60%"
|
75
|
-
placeholder='
|
75
|
+
placeholder='首次通气开始日期'
|
76
76
|
:format="'yyyy-MM-dd 00:00:00'"
|
77
77
|
v-model="model.f_gas_date_str"
|
78
78
|
condition="f_uservent_date > '{}'"
|
@@ -80,11 +80,11 @@
|
|
80
80
|
</datepicker>
|
81
81
|
</div>
|
82
82
|
<div class="form-group col-sm-4" v-show="$parent.$parent.criteriaShow">
|
83
|
-
<label class="font_normal_body"
|
83
|
+
<label class="font_normal_body">首次通气结束</label>
|
84
84
|
<datepicker
|
85
85
|
:value.sync="model.f_gas_date_end"
|
86
86
|
style="width: 60%"
|
87
|
-
placeholder='
|
87
|
+
placeholder='首次通气结束日期'
|
88
88
|
:format="'yyyy-MM-dd 23:59:59'"
|
89
89
|
v-model="model.f_gas_date_end"
|
90
90
|
condition="f_uservent_date < '{}'"
|
@@ -92,10 +92,10 @@
|
|
92
92
|
</datepicker>
|
93
93
|
</div>
|
94
94
|
<div class="form-group col-sm-4" v-show="$parent.$parent.criteriaShow" >
|
95
|
-
<label class="font_normal_body"
|
95
|
+
<label class="font_normal_body">表具通气开始</label>
|
96
96
|
<datepicker
|
97
97
|
:value.sync="model.f_check_start"
|
98
|
-
placeholder='
|
98
|
+
placeholder='表具通气开始时间' style="width: 60%"
|
99
99
|
:disabled-days-of-week="[]"
|
100
100
|
:format="'yyyy-MM-dd'"
|
101
101
|
:show-rest-button="reset"
|
@@ -104,10 +104,10 @@
|
|
104
104
|
</datepicker>
|
105
105
|
</div>
|
106
106
|
<div class="form-group col-sm-4" v-show="$parent.$parent.criteriaShow" >
|
107
|
-
<label class="font_normal_body"
|
107
|
+
<label class="font_normal_body">表具通气结束</label>
|
108
108
|
<datepicker
|
109
109
|
:value.sync="model.f_check_end"
|
110
|
-
placeholder='
|
110
|
+
placeholder='表具通气结束时间' style="width: 60%"
|
111
111
|
:disabled-days-of-week="[]"
|
112
112
|
:format="'yyyy-MM-dd'"
|
113
113
|
:show-rest-button="reset"
|
@@ -36,10 +36,10 @@
|
|
36
36
|
condition="tuf.f_user_type ='{}'"></v-select>
|
37
37
|
</div>
|
38
38
|
<div class="form-group col-sm-3">
|
39
|
-
<label class="font_normal_body"
|
39
|
+
<label class="font_normal_body">首次通气开始</label>
|
40
40
|
<datepicker
|
41
41
|
:value.sync="model.f_gas_start"
|
42
|
-
placeholder='
|
42
|
+
placeholder='首次通气开始' style="width: 60%"
|
43
43
|
:disabled-days-of-week="[]"
|
44
44
|
:format="'yyyy-MM-dd'"
|
45
45
|
:show-rest-button="reset"
|
@@ -48,10 +48,10 @@
|
|
48
48
|
</datepicker>
|
49
49
|
</div>
|
50
50
|
<div class="form-group col-sm-3">
|
51
|
-
<label class="font_normal_body"
|
51
|
+
<label class="font_normal_body">首次通气结束</label>
|
52
52
|
<datepicker
|
53
53
|
:value.sync="model.f_gas_end"
|
54
|
-
placeholder='
|
54
|
+
placeholder='首次通气结束' style="width: 60%"
|
55
55
|
:disabled-days-of-week="[]"
|
56
56
|
:format="'yyyy-MM-dd'"
|
57
57
|
:show-rest-button="reset"
|
@@ -83,7 +83,7 @@
|
|
83
83
|
<th><nobr>用户姓名</nobr></th>
|
84
84
|
<th><nobr>用户电话</nobr></th>
|
85
85
|
<th><nobr>用户地址</nobr></th>
|
86
|
-
<th><nobr
|
86
|
+
<th><nobr>首次通气日期</nobr></th>
|
87
87
|
<th><nobr>操作</nobr></th>
|
88
88
|
</tr>
|
89
89
|
</template>
|
@@ -131,7 +131,7 @@ export default {
|
|
131
131
|
'f_user_name': '客户姓名',
|
132
132
|
'f_user_phone':'客户电话',
|
133
133
|
'f_address': '客户地址',
|
134
|
-
'f_uservent_date': '
|
134
|
+
'f_uservent_date': '首次通气日期'
|
135
135
|
},
|
136
136
|
userTypes: [{label: '全部', value: ''},{label: '民用', value: '民用'}, {label: '非民用', value: '非民用'}],
|
137
137
|
model: new PagedList('rs/sql/getUserByCheckBook', 50)
|
@@ -193,10 +193,10 @@
|
|
193
193
|
</v-select>
|
194
194
|
</div>
|
195
195
|
<div :class="$parent.$parent.style" v-show="$parent.$parent.criteriaShow">
|
196
|
-
<label class="font_normal_body"
|
196
|
+
<label class="font_normal_body">首次通气开始</label>
|
197
197
|
<datepicker
|
198
198
|
:value.sync="model.f_gas_start"
|
199
|
-
placeholder='
|
199
|
+
placeholder='首次通气开始'
|
200
200
|
:disabled-days-of-week="[]"
|
201
201
|
style="width: 60%"
|
202
202
|
:format="'yyyy-MM-dd'"
|
@@ -207,10 +207,10 @@
|
|
207
207
|
</datepicker>
|
208
208
|
</div>
|
209
209
|
<div :class="$parent.$parent.style" v-show="$parent.$parent.criteriaShow">
|
210
|
-
<label class="font_normal_body"
|
210
|
+
<label class="font_normal_body">首次通气结束</label>
|
211
211
|
<datepicker
|
212
212
|
:value.sync="model.f_gas_end"
|
213
|
-
placeholder='
|
213
|
+
placeholder='首次通气结束'
|
214
214
|
style="width: 60%"
|
215
215
|
:disabled-days-of-week="[]"
|
216
216
|
:format="'yyyy-MM-dd'"
|
@@ -374,10 +374,10 @@
|
|
374
374
|
close-on-select clear-button></v-select>
|
375
375
|
</div>
|
376
376
|
<div :class="$parent.$parent.style" v-show="$parent.$parent.criteriaShow">
|
377
|
-
<label class="font_normal_body"
|
377
|
+
<label class="font_normal_body">首次通气开始</label>
|
378
378
|
<datepicker
|
379
379
|
:value.sync="model.f_gas_start"
|
380
|
-
placeholder='
|
380
|
+
placeholder='首次通气开始'
|
381
381
|
:disabled-days-of-week="[]"
|
382
382
|
style="width: 60%"
|
383
383
|
:format="'yyyy-MM-dd'"
|
@@ -388,10 +388,10 @@
|
|
388
388
|
</datepicker>
|
389
389
|
</div>
|
390
390
|
<div :class="$parent.$parent.style" v-show="$parent.$parent.criteriaShow">
|
391
|
-
<label class="font_normal_body"
|
391
|
+
<label class="font_normal_body">首次通气结束</label>
|
392
392
|
<datepicker
|
393
393
|
:value.sync="model.f_gas_end"
|
394
|
-
placeholder='
|
394
|
+
placeholder='首次通气结束'
|
395
395
|
style="width: 60%"
|
396
396
|
:disabled-days-of-week="[]"
|
397
397
|
:format="'yyyy-MM-dd'"
|
@@ -496,7 +496,7 @@
|
|
496
496
|
<nobr>建档日期</nobr>
|
497
497
|
</th>
|
498
498
|
<th>
|
499
|
-
<nobr
|
499
|
+
<nobr>首次通气日期</nobr>
|
500
500
|
</th>
|
501
501
|
<th v-show="$parent.$parent.$parent.showcode">
|
502
502
|
<nobr>二维码</nobr>
|
@@ -605,7 +605,7 @@ export default {
|
|
605
605
|
'f_last_check_state': '安检状态',
|
606
606
|
'f_last_check_result': '安检结果',
|
607
607
|
'f_createfile_date': '建档日期',
|
608
|
-
'f_uservent_date': '
|
608
|
+
'f_uservent_date': '首次通气日期'
|
609
609
|
},
|
610
610
|
model: new PagedList('rs/sql/根据安检员查询用户档案', 20, {
|
611
611
|
orderitem: "'f_last_check_date'",
|
@@ -159,10 +159,10 @@
|
|
159
159
|
style="width: 60%" placeholder="用户名称">
|
160
160
|
</div>
|
161
161
|
<div :class="$parent.$parent.style" >
|
162
|
-
<label class="font_normal_body"
|
162
|
+
<label class="font_normal_body">首次通气开始</label>
|
163
163
|
<datepicker
|
164
164
|
:value.sync="model.f_gas_start"
|
165
|
-
placeholder='
|
165
|
+
placeholder='首次通气开始时间' style="width: 60%"
|
166
166
|
:disabled-days-of-week="[]"
|
167
167
|
:format="'yyyy-MM-dd'"
|
168
168
|
:show-rest-button="reset"
|
@@ -171,10 +171,10 @@
|
|
171
171
|
</datepicker>
|
172
172
|
</div>
|
173
173
|
<div :class="$parent.$parent.style" >
|
174
|
-
<label class="font_normal_body"
|
174
|
+
<label class="font_normal_body">首次通气结束</label>
|
175
175
|
<datepicker
|
176
176
|
:value.sync="model.f_gas_end"
|
177
|
-
placeholder='
|
177
|
+
placeholder='首次通气结束时间' style="width: 60%"
|
178
178
|
:disabled-days-of-week="[]"
|
179
179
|
:format="'yyyy-MM-dd'"
|
180
180
|
:show-rest-button="reset"
|
@@ -335,10 +335,10 @@
|
|
335
335
|
style="width: 60%" placeholder="用户名称">
|
336
336
|
</div>
|
337
337
|
<div :class="$parent.$parent.style" >
|
338
|
-
<label class="font_normal_body"
|
338
|
+
<label class="font_normal_body">首次通气开始</label>
|
339
339
|
<datepicker
|
340
340
|
:value.sync="model.f_gas_start"
|
341
|
-
placeholder='
|
341
|
+
placeholder='首次通气开始时间' style="width: 60%"
|
342
342
|
:disabled-days-of-week="[]"
|
343
343
|
:format="'yyyy-MM-dd'"
|
344
344
|
:show-rest-button="reset"
|
@@ -347,10 +347,10 @@
|
|
347
347
|
</datepicker>
|
348
348
|
</div>
|
349
349
|
<div :class="$parent.$parent.style" >
|
350
|
-
<label class="font_normal_body"
|
350
|
+
<label class="font_normal_body">首次通气结束</label>
|
351
351
|
<datepicker
|
352
352
|
:value.sync="model.f_gas_end"
|
353
|
-
placeholder='
|
353
|
+
placeholder='首次通气结束时间' style="width: 60%"
|
354
354
|
:disabled-days-of-week="[]"
|
355
355
|
:format="'yyyy-MM-dd'"
|
356
356
|
:show-rest-button="reset"
|
@@ -372,7 +372,7 @@
|
|
372
372
|
<th><nobr>用户小区</nobr></th>
|
373
373
|
<th><nobr>用户地址</nobr></th>
|
374
374
|
<th>
|
375
|
-
<nobr
|
375
|
+
<nobr>首次通气时间</nobr>
|
376
376
|
</th>
|
377
377
|
<th><nobr>安检时间</nobr></th>
|
378
378
|
<th><nobr>安检员</nobr></th>
|
@@ -574,7 +574,7 @@ export default {
|
|
574
574
|
repairers:[],
|
575
575
|
cbcs:[],
|
576
576
|
thead: '',
|
577
|
-
headData: ['入户状态','用户编号','用户名','用户电话','用户小区','用户地址','
|
577
|
+
headData: ['入户状态','用户编号','用户名','用户电话','用户小区','用户地址','首次通气时间','安检时间','安检员','计划名','是否有隐患','隐患数','隐患明细','处理数','完成数','处理情况','完成情况','维修员'],
|
578
578
|
bodyData: ['f_entry_status','f_userinfo_code','f_user_name','f_user_phone','f_residential_area','f_address','f_uservent_date','f_offsite_time','f_checker_name','f_plan_name','f_has_defect','f_defect_count','f_defect_content','f_deal_count','f_repair_count','f_is_deal','f_is_repair','f_repairman'],
|
579
579
|
}
|
580
580
|
},
|