safecheck-client 3.0.34-92 → 3.0.34-93
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/AddPlanItemYy.vue +451 -451
- package/src/components/android/examples/SafeListExamples.vue +296 -279
- package/src/components/android/examples/UserExamples.vue +137 -137
- package/src/filiale/bayan/android/PaperFeedback.vue +4 -0
- package/src/filiale/bayan/pc/NewCheckpaper.vue +50 -46
- package/src/filiale/shanxian/android/AddPlanItem.vue +447 -447
- package/src/filiale/shanxian/android.js +18 -18
- package/src/filiale/shanxian/pc/PaperList.vue +785 -785
- package/src/filiale/shanxian/pc/SelectCheckPlan.vue +303 -303
- package/src/filiale/shanxian/pc.js +20 -20
- package/src/filiale/siyang/android/AddPlanItem.vue +450 -450
- package/src/filiale/tongchuan/android/SafecheckDevices.vue +2 -2
- package/src/filiale/tongchuan/pc/checkUserList.vue +30 -0
- package/src/filiale/xilan/android/AddPlanItem.vue +457 -457
- package/src/filiale/xilan/android/CurrentCreate.vue +1060 -1060
- package/src/filiale/xilan/android.js +11 -11
- package/src/main.js +33 -33
- package/src/safecheck-android.js +307 -307
@@ -1,137 +1,137 @@
|
|
1
|
-
<template>
|
2
|
-
<div class="work-badge" style="height: 100%">
|
3
|
-
<div class="badge-top" style="height: 15%">
|
4
|
-
<div class="badge-number">NO.{{ f_head_code }}</div>
|
5
|
-
</div>
|
6
|
-
<div class="badge-middle" style="height: 75%">
|
7
|
-
<img class="badge-image" :src="f_head_pic" alt="Badge Image">
|
8
|
-
<h1 class="name">{{ f_head_name }}</h1>
|
9
|
-
<div class="white-line"></div>
|
10
|
-
<span class="position">{{ f_head_post }}</span>
|
11
|
-
</div>
|
12
|
-
<div class="badge-bottom" style="height: 10%">
|
13
|
-
<div class="contact">
|
14
|
-
<img class="phone-icon" src="../../../assets/123.png" style="height: 30px;width: 30px" alt="Phone Icon">
|
15
|
-
<span style="font-size: 30px;font-style: italic;">{{ f_head_phone }}</span>
|
16
|
-
</div>
|
17
|
-
</div>
|
18
|
-
</div>
|
19
|
-
</template>
|
20
|
-
<script>
|
21
|
-
import {HttpResetClass} from "vue-client";
|
22
|
-
|
23
|
-
export default {
|
24
|
-
name: 'WorkBadge',
|
25
|
-
title:'WorkBadge',
|
26
|
-
data () {
|
27
|
-
return {
|
28
|
-
// 默认值或初始状态
|
29
|
-
f_head_pic: '',
|
30
|
-
f_head_code: '',
|
31
|
-
f_head_name: '',
|
32
|
-
f_head_post: '',
|
33
|
-
f_head_phone: ''
|
34
|
-
};
|
35
|
-
},
|
36
|
-
async ready () {
|
37
|
-
console.log(window.location.href)
|
38
|
-
let id = ''
|
39
|
-
let url = window.location.href
|
40
|
-
if (url.includes('id')){
|
41
|
-
const urlObj = new URL(url);
|
42
|
-
id = urlObj.searchParams.get('id');
|
43
|
-
let QRCode = await new HttpResetClass().load('post',`rs/sql/tel_singleTable_OrderBy`,{data: {
|
44
|
-
items: 'tqr.*,tf.f_downloadpath as url',
|
45
|
-
tablename: 't_qr_code tqr left join t_files tf on tf.f_businessid = tqr.id and f_table_name = \'t_qr_code\'',
|
46
|
-
condition: `f_head_code = '${id}'`,
|
47
|
-
orderitem: '1'
|
48
|
-
}},{resolveMsg: null,rejectMsg: null})
|
49
|
-
if (QRCode && QRCode.data && QRCode.data.length > 0){
|
50
|
-
if (QRCode.data[0].url){
|
51
|
-
this.f_head_pic = QRCode.data[0].url
|
52
|
-
}else {
|
53
|
-
this.f_head_pic = `/rs/image/file/${QRCode.data[0].f_head_pic}`
|
54
|
-
}
|
55
|
-
this.f_head_code = QRCode.data[0].f_head_code
|
56
|
-
this.f_head_name = QRCode.data[0].f_head_name
|
57
|
-
this.f_head_post = QRCode.data[0].f_head_post
|
58
|
-
this.f_head_phone = QRCode.data[0].f_head_phone
|
59
|
-
}else {
|
60
|
-
console.log('获取二维码信息失败')
|
61
|
-
console.log(QRCode)
|
62
|
-
}
|
63
|
-
}
|
64
|
-
}
|
65
|
-
};
|
66
|
-
</script>
|
67
|
-
<style scoped>
|
68
|
-
.white-line {
|
69
|
-
width: 65%;
|
70
|
-
height: 5px;
|
71
|
-
background-color: white;
|
72
|
-
margin: 10px 0 10px 17%;
|
73
|
-
}
|
74
|
-
.work-badge {
|
75
|
-
display: flex;
|
76
|
-
flex-direction: column;
|
77
|
-
background-image: url('../../../assets/f8632d3c8c4c1cb68e99da754cab1a7.png');
|
78
|
-
align-items: center;
|
79
|
-
background-color: #007BFF;
|
80
|
-
color: white;
|
81
|
-
padding: 20px;
|
82
|
-
}
|
83
|
-
|
84
|
-
.badge-top {
|
85
|
-
display: flex;
|
86
|
-
align-items: center;
|
87
|
-
justify-content: space-between;
|
88
|
-
width: 100%;
|
89
|
-
margin-bottom: 20px;
|
90
|
-
}
|
91
|
-
|
92
|
-
.badge-image {
|
93
|
-
border: 3px solid #fcfcfc;
|
94
|
-
width: 300px;
|
95
|
-
border-radius: 15px;
|
96
|
-
}
|
97
|
-
|
98
|
-
.badge-number {
|
99
|
-
font-size: 24px;
|
100
|
-
float: left;
|
101
|
-
text-align: left;
|
102
|
-
font-weight: bold;
|
103
|
-
}
|
104
|
-
|
105
|
-
.badge-middle {
|
106
|
-
text-align: center;
|
107
|
-
margin-bottom: 20px;
|
108
|
-
}
|
109
|
-
|
110
|
-
.name {
|
111
|
-
font-size: 65px;
|
112
|
-
font-weight: bold;
|
113
|
-
margin-bottom: 10px;
|
114
|
-
margin-top: 50px;
|
115
|
-
}
|
116
|
-
|
117
|
-
.position {
|
118
|
-
font-size: 24px;
|
119
|
-
}
|
120
|
-
|
121
|
-
.badge-bottom {
|
122
|
-
display: flex;
|
123
|
-
align-items: center;
|
124
|
-
justify-content: center;
|
125
|
-
}
|
126
|
-
|
127
|
-
.contact {
|
128
|
-
display: flex;
|
129
|
-
align-items: center;
|
130
|
-
}
|
131
|
-
|
132
|
-
.phone-icon {
|
133
|
-
width: 30px;
|
134
|
-
height: 30px;
|
135
|
-
margin-right: 10px;
|
136
|
-
}
|
137
|
-
</style>
|
1
|
+
<template>
|
2
|
+
<div class="work-badge" style="height: 100%">
|
3
|
+
<div class="badge-top" style="height: 15%">
|
4
|
+
<div class="badge-number">NO.{{ f_head_code }}</div>
|
5
|
+
</div>
|
6
|
+
<div class="badge-middle" style="height: 75%">
|
7
|
+
<img class="badge-image" :src="f_head_pic" alt="Badge Image">
|
8
|
+
<h1 class="name">{{ f_head_name }}</h1>
|
9
|
+
<div class="white-line"></div>
|
10
|
+
<span class="position">{{ f_head_post }}</span>
|
11
|
+
</div>
|
12
|
+
<div class="badge-bottom" style="height: 10%">
|
13
|
+
<div class="contact">
|
14
|
+
<img class="phone-icon" src="../../../assets/123.png" style="height: 30px;width: 30px" alt="Phone Icon">
|
15
|
+
<span style="font-size: 30px;font-style: italic;">{{ f_head_phone }}</span>
|
16
|
+
</div>
|
17
|
+
</div>
|
18
|
+
</div>
|
19
|
+
</template>
|
20
|
+
<script>
|
21
|
+
import {HttpResetClass} from "vue-client";
|
22
|
+
|
23
|
+
export default {
|
24
|
+
name: 'WorkBadge',
|
25
|
+
title:'WorkBadge',
|
26
|
+
data () {
|
27
|
+
return {
|
28
|
+
// 默认值或初始状态
|
29
|
+
f_head_pic: '',
|
30
|
+
f_head_code: '',
|
31
|
+
f_head_name: '',
|
32
|
+
f_head_post: '',
|
33
|
+
f_head_phone: ''
|
34
|
+
};
|
35
|
+
},
|
36
|
+
async ready () {
|
37
|
+
console.log(window.location.href)
|
38
|
+
let id = ''
|
39
|
+
let url = window.location.href
|
40
|
+
if (url.includes('id')){
|
41
|
+
const urlObj = new URL(url);
|
42
|
+
id = urlObj.searchParams.get('id');
|
43
|
+
let QRCode = await new HttpResetClass().load('post',`rs/sql/tel_singleTable_OrderBy`,{data: {
|
44
|
+
items: 'tqr.*,tf.f_downloadpath as url',
|
45
|
+
tablename: 't_qr_code tqr left join t_files tf on tf.f_businessid = tqr.id and f_table_name = \'t_qr_code\'',
|
46
|
+
condition: `f_head_code = '${id}'`,
|
47
|
+
orderitem: '1'
|
48
|
+
}},{resolveMsg: null,rejectMsg: null})
|
49
|
+
if (QRCode && QRCode.data && QRCode.data.length > 0){
|
50
|
+
if (QRCode.data[0].url){
|
51
|
+
this.f_head_pic = QRCode.data[0].url
|
52
|
+
}else {
|
53
|
+
this.f_head_pic = `/rs/image/file/${QRCode.data[0].f_head_pic}`
|
54
|
+
}
|
55
|
+
this.f_head_code = QRCode.data[0].f_head_code
|
56
|
+
this.f_head_name = QRCode.data[0].f_head_name
|
57
|
+
this.f_head_post = QRCode.data[0].f_head_post
|
58
|
+
this.f_head_phone = QRCode.data[0].f_head_phone
|
59
|
+
}else {
|
60
|
+
console.log('获取二维码信息失败')
|
61
|
+
console.log(QRCode)
|
62
|
+
}
|
63
|
+
}
|
64
|
+
}
|
65
|
+
};
|
66
|
+
</script>
|
67
|
+
<style scoped>
|
68
|
+
.white-line {
|
69
|
+
width: 65%;
|
70
|
+
height: 5px;
|
71
|
+
background-color: white;
|
72
|
+
margin: 10px 0 10px 17%;
|
73
|
+
}
|
74
|
+
.work-badge {
|
75
|
+
display: flex;
|
76
|
+
flex-direction: column;
|
77
|
+
background-image: url('../../../assets/f8632d3c8c4c1cb68e99da754cab1a7.png');
|
78
|
+
align-items: center;
|
79
|
+
background-color: #007BFF;
|
80
|
+
color: white;
|
81
|
+
padding: 20px;
|
82
|
+
}
|
83
|
+
|
84
|
+
.badge-top {
|
85
|
+
display: flex;
|
86
|
+
align-items: center;
|
87
|
+
justify-content: space-between;
|
88
|
+
width: 100%;
|
89
|
+
margin-bottom: 20px;
|
90
|
+
}
|
91
|
+
|
92
|
+
.badge-image {
|
93
|
+
border: 3px solid #fcfcfc;
|
94
|
+
width: 300px;
|
95
|
+
border-radius: 15px;
|
96
|
+
}
|
97
|
+
|
98
|
+
.badge-number {
|
99
|
+
font-size: 24px;
|
100
|
+
float: left;
|
101
|
+
text-align: left;
|
102
|
+
font-weight: bold;
|
103
|
+
}
|
104
|
+
|
105
|
+
.badge-middle {
|
106
|
+
text-align: center;
|
107
|
+
margin-bottom: 20px;
|
108
|
+
}
|
109
|
+
|
110
|
+
.name {
|
111
|
+
font-size: 65px;
|
112
|
+
font-weight: bold;
|
113
|
+
margin-bottom: 10px;
|
114
|
+
margin-top: 50px;
|
115
|
+
}
|
116
|
+
|
117
|
+
.position {
|
118
|
+
font-size: 24px;
|
119
|
+
}
|
120
|
+
|
121
|
+
.badge-bottom {
|
122
|
+
display: flex;
|
123
|
+
align-items: center;
|
124
|
+
justify-content: center;
|
125
|
+
}
|
126
|
+
|
127
|
+
.contact {
|
128
|
+
display: flex;
|
129
|
+
align-items: center;
|
130
|
+
}
|
131
|
+
|
132
|
+
.phone-icon {
|
133
|
+
width: 30px;
|
134
|
+
height: 30px;
|
135
|
+
margin-right: 10px;
|
136
|
+
}
|
137
|
+
</style>
|
@@ -186,6 +186,10 @@
|
|
186
186
|
</div>
|
187
187
|
|
188
188
|
</div>
|
189
|
+
<div class="form-group col-sm-12 col-xs-12 col-md-12 ">
|
190
|
+
<label class="text-left font">隐患整改通知单单号</label>
|
191
|
+
<input v-model="paper.f_repairorder_id" :value="paper.f_repairorder_id" type="text">
|
192
|
+
</div>
|
189
193
|
<div class="form-group col-sm-12 col-xs-12 col-md-12 ">
|
190
194
|
<label class="text-left font">副操</label>
|
191
195
|
<v-select
|
@@ -97,19 +97,19 @@ div {
|
|
97
97
|
<tr>
|
98
98
|
<td style="text-align: center;border: #E9E9E9 solid 1px">街 道:</td>
|
99
99
|
<td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_street }}</td>
|
100
|
-
<td style="text-align: center;border: #E9E9E9 solid 1px">楼 号:</td>
|
101
|
-
<td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_building }}</td>
|
100
|
+
<td style="text-align: center;border: #E9E9E9 solid 1px" v-if="paperdata.f_check_type=='民用'">楼 号:</td>
|
101
|
+
<td style="text-align: center;border: #E9E9E9 solid 1px" v-if="paperdata.f_check_type=='民用'">{{ paperdata.f_building }}</td>
|
102
102
|
</tr>
|
103
103
|
<tr>
|
104
|
-
<td style="text-align: center;border: #E9E9E9 solid 1px">单 元:</td>
|
105
|
-
<td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_unit }}</td>
|
106
|
-
<td style="text-align: center;border: #E9E9E9 solid 1px">楼 层:</td>
|
107
|
-
<td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_floor }}</td>
|
104
|
+
<td style="text-align: center;border: #E9E9E9 solid 1px" v-if="paperdata.f_check_type=='民用'">单 元:</td>
|
105
|
+
<td style="text-align: center;border: #E9E9E9 solid 1px" v-if="paperdata.f_check_type=='民用'">{{ paperdata.f_unit }}</td>
|
106
|
+
<td style="text-align: center;border: #E9E9E9 solid 1px" v-if="paperdata.f_check_type=='民用'">楼 层:</td>
|
107
|
+
<td style="text-align: center;border: #E9E9E9 solid 1px" v-if="paperdata.f_check_type=='民用'">{{ paperdata.f_floor }}</td>
|
108
108
|
</tr>
|
109
109
|
<tr>
|
110
|
-
<td style="text-align: center;border: #E9E9E9 solid 1px">门 牌 号 :</td>
|
111
|
-
<td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_room }}</td>
|
112
|
-
<td style="text-align: center;border: #E9E9E9 solid 1px">用户性质:</td>
|
110
|
+
<td style="text-align: center;border: #E9E9E9 solid 1px" v-if="paperdata.f_check_type=='民用'">门 牌 号 :</td>
|
111
|
+
<td style="text-align: center;border: #E9E9E9 solid 1px" v-if="paperdata.f_check_type=='民用'">{{ paperdata.f_room }}</td>
|
112
|
+
<td style="text-align: center;border: #E9E9E9 solid 1px" >用户性质:</td>
|
113
113
|
<td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_userproperties }}</td>
|
114
114
|
</tr>
|
115
115
|
<tr>
|
@@ -163,24 +163,26 @@ div {
|
|
163
163
|
</td>
|
164
164
|
</tr>
|
165
165
|
<tr>
|
166
|
-
<td colspan="1" style="text-align: center;border: #E9E9E9 solid 1px;"
|
166
|
+
<td colspan="1" style="text-align: center;border: #E9E9E9 solid 1px;">隐患通知单单号:</td>
|
167
167
|
<td colspan="3"
|
168
168
|
style="text-align: center;border: #E9E9E9 solid 1px;word-wrap:break-word;word-break:break-all;width:87%">
|
169
|
-
|
169
|
+
{{ paperdata.f_repairorder_id }}
|
170
|
+
</td>
|
171
|
+
</tr>
|
172
|
+
<tr>
|
173
|
+
<td colspan="1" style="text-align: center;border: #E9E9E9 solid 1px;">隐患详情:</td>
|
174
|
+
<td colspan="3" style="text-align: center;border: #E9E9E9 solid 1px;word-wrap:break-word;word-break:break-all;width:87%">
|
175
|
+
<span v-for="deviceCollect in deviceCollects">
|
170
176
|
<span class="li-font">
|
171
177
|
{{ deviceCollect.name }}:{{ deviceCollect.value }}
|
172
178
|
</span>
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
</span><br>
|
181
|
-
</span>
|
182
|
-
|
183
|
-
</span>
|
179
|
+
<br>
|
180
|
+
<span v-if="deviceCollect.value == '有隐患'">
|
181
|
+
<lable>隐患:</lable>
|
182
|
+
<span v-for="val in deviceCollect.devices">{{ val }}</span>
|
183
|
+
<br>
|
184
|
+
</span>
|
185
|
+
</span>
|
184
186
|
</td>
|
185
187
|
</tr>
|
186
188
|
|
@@ -485,18 +487,18 @@ div {
|
|
485
487
|
<tr>
|
486
488
|
<td style="text-align: center;border: #E9E9E9 solid 1px">街 道:</td>
|
487
489
|
<td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_street }}</td>
|
488
|
-
<td style="text-align: center;border: #E9E9E9 solid 1px">楼 号:</td>
|
489
|
-
<td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_building }}</td>
|
490
|
+
<td style="text-align: center;border: #E9E9E9 solid 1px" v-if="paperdata.f_check_type=='民用'">楼 号:</td>
|
491
|
+
<td style="text-align: center;border: #E9E9E9 solid 1px" v-if="paperdata.f_check_type=='民用'">{{ paperdata.f_building }}</td>
|
490
492
|
</tr>
|
491
493
|
<tr>
|
492
|
-
<td style="text-align: center;border: #E9E9E9 solid 1px">单 元:</td>
|
493
|
-
<td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_unit }}</td>
|
494
|
-
<td style="text-align: center;border: #E9E9E9 solid 1px">楼 层:</td>
|
495
|
-
<td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_floor }}</td>
|
494
|
+
<td style="text-align: center;border: #E9E9E9 solid 1px" v-if="paperdata.f_check_type=='民用'">单 元:</td>
|
495
|
+
<td style="text-align: center;border: #E9E9E9 solid 1px" v-if="paperdata.f_check_type=='民用'">{{ paperdata.f_unit }}</td>
|
496
|
+
<td style="text-align: center;border: #E9E9E9 solid 1px" v-if="paperdata.f_check_type=='民用'">楼 层:</td>
|
497
|
+
<td style="text-align: center;border: #E9E9E9 solid 1px" v-if="paperdata.f_check_type=='民用'">{{ paperdata.f_floor }}</td>
|
496
498
|
</tr>
|
497
499
|
<tr>
|
498
|
-
<td style="text-align: center;border: #E9E9E9 solid 1px">门 牌 号 :</td>
|
499
|
-
<td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_room }}</td>
|
500
|
+
<td style="text-align: center;border: #E9E9E9 solid 1px" v-if="paperdata.f_check_type=='民用'">门 牌 号 :</td>
|
501
|
+
<td style="text-align: center;border: #E9E9E9 solid 1px" v-if="paperdata.f_check_type=='民用'">{{ paperdata.f_room }}</td>
|
500
502
|
<td style="text-align: center;border: #E9E9E9 solid 1px">用户性质:</td>
|
501
503
|
<td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_userproperties }}</td>
|
502
504
|
</tr>
|
@@ -557,27 +559,28 @@ div {
|
|
557
559
|
</td>
|
558
560
|
</tr>
|
559
561
|
<tr>
|
560
|
-
<td colspan="1" style="text-align: center;border: #E9E9E9 solid 1px;"
|
562
|
+
<td colspan="1" style="text-align: center;border: #E9E9E9 solid 1px;">隐患通知单单号:</td>
|
561
563
|
<td colspan="3"
|
562
564
|
style="text-align: center;border: #E9E9E9 solid 1px;word-wrap:break-word;word-break:break-all;width:87%">
|
563
|
-
|
565
|
+
{{ paperdata.f_repairorder_id }}
|
566
|
+
</td>
|
567
|
+
</tr>
|
568
|
+
<tr>
|
569
|
+
<td colspan="1" style="text-align: center;border: #E9E9E9 solid 1px;">隐患详情:</td>
|
570
|
+
<td colspan="3" style="text-align: center;border: #E9E9E9 solid 1px;word-wrap:break-word;word-break:break-all;width:87%">
|
571
|
+
<span v-for="deviceCollect in deviceCollects">
|
564
572
|
<span class="li-font">
|
565
573
|
{{ deviceCollect.name }}:{{ deviceCollect.value }}
|
566
574
|
</span>
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
573
|
-
|
574
|
-
</span><br>
|
575
|
-
</span>
|
576
|
-
|
577
|
-
</span>
|
575
|
+
<br>
|
576
|
+
<span v-if="deviceCollect.value == '有隐患'">
|
577
|
+
<lable>隐患:</lable>
|
578
|
+
<span v-for="val in deviceCollect.devices">{{ val }}</span>
|
579
|
+
<br>
|
580
|
+
</span>
|
581
|
+
</span>
|
578
582
|
</td>
|
579
583
|
</tr>
|
580
|
-
|
581
584
|
</tbody>
|
582
585
|
</table>
|
583
586
|
<table class="table table-striped table-bordered" style="margin-top: 40px"
|
@@ -1338,7 +1341,8 @@ export default {
|
|
1338
1341
|
if (this.deviceCollects.length > 0) {
|
1339
1342
|
this.hasDevice = true
|
1340
1343
|
}
|
1341
|
-
this.
|
1344
|
+
this.data.f_userproperties = this.item.f_gasproperties
|
1345
|
+
this.ajresult = JSON.parse(this.item.f_defect_content).result
|
1342
1346
|
this.showimg3 = this.data.f_noanswer_path
|
1343
1347
|
this.showimg5 = this.data.f_noanswer1_path
|
1344
1348
|
this.showimg6 = this.data.f_noanswer2_path
|
@@ -1860,7 +1864,7 @@ export default {
|
|
1860
1864
|
setTimeout(() => {
|
1861
1865
|
this.loading = false;
|
1862
1866
|
}, 10000)
|
1863
|
-
|
1867
|
+
this.putDevices()
|
1864
1868
|
this.showAudit()
|
1865
1869
|
this.newConfig = this.$appdata.getSingleValue('配置中心获取文件') ? this.$appdata.getSingleValue('配置中心获取文件') : '否';
|
1866
1870
|
if (this.item.f_state != '未检' || this.item.f_no_checkplan == '无计划安检' || this.item.f_no_checkplan == '复检') {
|