|
@@ -34,7 +34,6 @@
|
34
|
34
|
<th v-if="isShow('置换率') && template_id !=6" width="92px">置换率(L/h)</th>
|
35
|
35
|
<th v-if="isShow('置换量') && template_id ==6" width="50px">置换量(ml)</th>
|
36
|
36
|
<th v-if="isShow('置换量') && template_id !=6" width="50px">置换量(L)</th>
|
37
|
|
- <th v-if="isShow('SpO₂') && template_id !=6" width="50px">SpO₂(%)</th>
|
38
|
37
|
<th v-if="isShow('电导度')" width="50px">电导度(mS/m)</th>
|
39
|
38
|
<th v-if="isShow('置换液流量')" width="50px">置换液流量(ml/h)</th>
|
40
|
39
|
|
|
@@ -72,9 +71,6 @@
|
72
|
71
|
<td
|
73
|
72
|
v-if="isShow('置换量')"
|
74
|
73
|
>{{item.displacement_quantity?item.displacement_quantity:''}}</td>
|
75
|
|
- <td
|
76
|
|
- v-if="isShow('SpO₂')"
|
77
|
|
- >{{item.blood_oxygen_saturation?item.blood_oxygen_saturation:''}}</td>
|
78
|
74
|
<td v-if="isShow('电导度')">{{item.conductivity?item.conductivity:''}}</td>
|
79
|
75
|
<td
|
80
|
76
|
v-if="isShow('置换液流量')"
|
|
@@ -282,17 +278,6 @@
|
282
|
278
|
v-model="form.displacement_quantity"
|
283
|
279
|
/>
|
284
|
280
|
</div>
|
285
|
|
- <div class="cell" v-if="isShow('SpO₂')">
|
286
|
|
- <label v-if="template_id == 6">SpO₂(%)</label>
|
287
|
|
- <label v-else>SpO₂(L)</label>
|
288
|
|
- <input
|
289
|
|
- type="number"
|
290
|
|
- @focus="inputFocus"
|
291
|
|
- onclick="this.select();"
|
292
|
|
- class="inputBox"
|
293
|
|
- v-model="form.blood_oxygen_saturation"
|
294
|
|
- />
|
295
|
|
- </div>
|
296
|
281
|
<div class="cell" v-if="isShow('电导度')">
|
297
|
282
|
<label>电导度(mS/m)</label>
|
298
|
283
|
<input
|
|
@@ -489,8 +474,7 @@ export default {
|
489
|
474
|
ktv: '', // KT/V(在线)
|
490
|
475
|
symptom: '', // 症状
|
491
|
476
|
dispose: '', // 处理
|
492
|
|
- result: '', // 结果,
|
493
|
|
- blood_oxygen_saturation: '',
|
|
477
|
+ result: '', // 结果
|
494
|
478
|
monitoring_nurse: this.$store.getters.user.user.id // 监测人
|
495
|
479
|
},
|
496
|
480
|
doctor: this.$store.getters.user.user.user_name
|
|
@@ -569,7 +553,7 @@ export default {
|
569
|
553
|
this.today_last_monitor_record = resp.monitor
|
570
|
554
|
|
571
|
555
|
// this.form.operate_time = Date.parse(new Date())
|
572
|
|
- this.form.operate_time = resp.monitor.operate_time ? (resp.monitor.operate_time + 3600) * 1000 : Date.parse(new Date())
|
|
556
|
+ this.form.operate_time = resp.monitor.operate_time ? (resp.monitor.operate_time + 3600) * 1000 : Date.parse(new Date())
|
573
|
557
|
this.form.pulse_frequency = '' // this.last_monitor_record.pulse_frequency;
|
574
|
558
|
this.form.breathing_rated = resp.monitor.breathing_rate ? resp.monitor.breathing_rate : ''
|
575
|
559
|
this.form.systolic_bp = '' // this.last_monitor_record.systolic_blood_pressure;
|
|
@@ -581,7 +565,7 @@ export default {
|
581
|
565
|
this.form.ultrafiltration_rate = resp.monitor.ultrafiltration_rate ? resp.monitor.ultrafiltration_rate : ''
|
582
|
566
|
this.form.ultrafiltration_volume = resp.monitor.ultrafiltration_volume ? resp.monitor.ultrafiltration_volume : ''
|
583
|
567
|
this.form.sodium_concentration = resp.monitor.sodium_concentration ? resp.monitor.sodium_concentration : ''
|
584
|
|
- this.form.dialysate_temperature = resp.monitor.dialysate_temperature ? resp.monitor.dialysate_temperature : ''
|
|
568
|
+ this.form.dialysate_temperature = resp.monitor.dialysate_temperature ? resp.monitor.dialysate_temperature : ''
|
585
|
569
|
this.form.temperature = resp.monitor.temperature ? resp.monitor.temperature : ''
|
586
|
570
|
this.form.replacement_rate = resp.monitor.replacement_rate ? resp.monitor.replacement_rate : ''
|
587
|
571
|
this.form.displacement_quantity = '' // this.last_monitor_record.displacement_quantity;
|
|
@@ -946,7 +930,7 @@ export default {
|
946
|
930
|
} else {
|
947
|
931
|
this.form.ktv = this.currentRow.ktv
|
948
|
932
|
}
|
949
|
|
- this.form.blood_oxygen_saturation = this.currentRow.blood_oxygen_saturation
|
|
933
|
+
|
950
|
934
|
this.form.symptom = this.currentRow.symptom
|
951
|
935
|
this.form.dispose = this.currentRow.dispose
|
952
|
936
|
this.form.result = this.currentRow.result
|
|
@@ -1014,7 +998,7 @@ export default {
|
1014
|
998
|
params.result = this.form.result
|
1015
|
999
|
params.monitoring_nurse = this.form.monitoring_nurse
|
1016
|
1000
|
params.displacement_flow_quantity = this.form.displacement_flow_quantity
|
1017
|
|
- params.blood_oxygen_saturation = this.form.blood_oxygen_saturation
|
|
1001
|
+
|
1018
|
1002
|
params.id = this.form.id
|
1019
|
1003
|
editMonitorRecord(params).then(rs => {
|
1020
|
1004
|
var resp = rs.data
|
|
@@ -1042,7 +1026,6 @@ export default {
|
1042
|
1026
|
this.form.replacement_rate = ''
|
1043
|
1027
|
this.form.displacement_quantity = ''
|
1044
|
1028
|
this.form.ktv = ''
|
1045
|
|
- this.form.blood_oxygen_saturation = ''
|
1046
|
1029
|
this.form.symptom = ''
|
1047
|
1030
|
this.form.dispose = ''
|
1048
|
1031
|
this.form.result = ''
|
|
@@ -1058,7 +1041,7 @@ export default {
|
1058
|
1041
|
Toast.fail(resp.msg)
|
1059
|
1042
|
}
|
1060
|
1043
|
}).catch(error => {
|
1061
|
|
- Toast.fail('请求失败')
|
|
1044
|
+ Toast.fail("请求失败")
|
1062
|
1045
|
})
|
1063
|
1046
|
},
|
1064
|
1047
|
submitAction: function () {
|
|
@@ -1086,7 +1069,7 @@ export default {
|
1086
|
1069
|
params.displacement_quantity = this.form.displacement_quantity
|
1087
|
1070
|
params.conductivity = this.form.conductivity
|
1088
|
1071
|
params.displacement_flow_quantity = this.form.displacement_flow_quantity
|
1089
|
|
- params.blood_oxygen_saturation = this.form.blood_oxygen_saturation
|
|
1072
|
+
|
1090
|
1073
|
params.ktv = this.form.ktv
|
1091
|
1074
|
params.symptom = this.form.symptom
|
1092
|
1075
|
params.dispose = this.form.dispose
|