safecheck-client 3.0.39-81 → 3.0.39-82
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/components/android/block/BlockUserDetails.vue +356 -0
- package/src/components/android/block/BlockUserManager.vue +226 -0
- package/src/filiale/dexin/android/SafecheckOrderVTemp.vue +1256 -1255
- package/src/filiale/dexin/pc/PaperList.vue +17 -0
- package/src/safecheck-android.js +318 -316
|
@@ -285,6 +285,17 @@
|
|
|
285
285
|
:value-single="true">
|
|
286
286
|
</v-select>
|
|
287
287
|
</div>
|
|
288
|
+
<div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow">
|
|
289
|
+
<label class="font_normal_body">点火类型</label>
|
|
290
|
+
<v-select class="select_list select"
|
|
291
|
+
placeholder='请选择' style="width: 60%"
|
|
292
|
+
:value.sync="model.f_fire_type" v-model="model.f_fire_type"
|
|
293
|
+
:options='$parent.$parent.fire_types'
|
|
294
|
+
filer-key="name" condition="f_fire_type = '{}'"
|
|
295
|
+
close-on-select clear-button
|
|
296
|
+
:value-single="true">
|
|
297
|
+
</v-select>
|
|
298
|
+
</div>
|
|
288
299
|
<div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow">
|
|
289
300
|
<label class="font_normal_body">安检类型</label>
|
|
290
301
|
<v-select class="select_list select"
|
|
@@ -371,6 +382,9 @@
|
|
|
371
382
|
<th>
|
|
372
383
|
<nobr>检查类型</nobr>
|
|
373
384
|
</th>
|
|
385
|
+
<th>
|
|
386
|
+
<nobr>点火类型</nobr>
|
|
387
|
+
</th>
|
|
374
388
|
<th>
|
|
375
389
|
<nobr>安检类型</nobr>
|
|
376
390
|
</th>
|
|
@@ -415,6 +429,7 @@
|
|
|
415
429
|
<td style="text-align: center">{{ row.f_repair_approved_note }}</td>
|
|
416
430
|
<td style="text-align: center">{{ row.f_gas_date }}</td>
|
|
417
431
|
<td style="text-align: center">{{ row.f_inspect_type }}</td>
|
|
432
|
+
<td style="text-align: center">{{ row.f_fire_type }}</td>
|
|
418
433
|
<td style="text-align: center">{{ row.f_safe_type }}</td>
|
|
419
434
|
<td style="text-align: center" v-show="$parent.$parent.$parent.safeAudit">{{ row.f_approved_by }}</td>
|
|
420
435
|
<td style="text-align: center" v-show="$parent.$parent.$parent.safeAudit">{{ row.f_approvedstart_time }}</td>
|
|
@@ -542,6 +557,7 @@ export default {
|
|
|
542
557
|
'f_repair_approved_note': '备注',
|
|
543
558
|
'f_gas_date': '开户时间',
|
|
544
559
|
'f_inspect_type': '检查类型',
|
|
560
|
+
'f_fire_type': '点火类型',
|
|
545
561
|
'f_plan_name': '计划名称',
|
|
546
562
|
'f_pcd': '省市区',
|
|
547
563
|
},
|
|
@@ -554,6 +570,7 @@ export default {
|
|
|
554
570
|
checktype: this.$appdata.getParam('用户类型')?[{label: '全部', value: ''}, ...this.$appdata.getParam('用户类型')]:[{label: '全部', value: ''}],
|
|
555
571
|
f_check_type:[{label:'全部',value:''},{label:'民用',value:'民用'},{label:'非民用',value:'非民用'}],
|
|
556
572
|
inspect_types:[{label:'全部',value:''},{label:'普通检查',value:'普通检查'},{label:'点火检查',value:'点火检查'}],
|
|
573
|
+
fire_types:[{label:'全部',value:''},{label:'正常点火',value:'正常点火'},{label:'点火条件不符未点',value:'点火条件不符未点'}],
|
|
557
574
|
showModal: false,
|
|
558
575
|
repeat_uploads:[{label: '全部', value: ''},{label: '是', value: '是'},{label: '否', value: '否'}],
|
|
559
576
|
safe_types:this.$appdata.getParam('计划类型')?[{label: '全部', value: ''}, ...this.$appdata.getParam('计划类型')]:[{label: '全部', value: ''}],
|