|
@@ -893,7 +893,7 @@ export default {
|
893
|
893
|
this.form.temperature = '' // this.last_monitor_record.pulse_frequency;
|
894
|
894
|
|
895
|
895
|
this.form.pulse_frequency = '' // this.last_monitor_record.pulse_frequency;
|
896
|
|
- this.form.breathing_rated = ''
|
|
896
|
+ this.form.breathing_rated = resp.monitor.breathing_rated ? resp.monitor.breathing_rated : ''
|
897
|
897
|
this.form.systolic_bp = '' // this.last_monitor_record.systolic_blood_pressure;
|
898
|
898
|
this.form.diastolic_bp = '' // this.last_monitor_record.diastolic_blood_pressure;
|
899
|
899
|
this.form.blood_flow_volume = resp.monitor.blood_flow_volume ? resp.monitor.blood_flow_volume : ''
|
|
@@ -907,7 +907,7 @@ export default {
|
907
|
907
|
this.form.ultrafiltration_volume = resp.monitor.ultrafiltration_volume ? resp.monitor.ultrafiltration_volume : ''
|
908
|
908
|
this.form.sodium_concentration = resp.monitor.sodium_concentration ? resp.monitor.sodium_concentration : ''
|
909
|
909
|
this.form.dialysate_temperature = resp.monitor.dialysate_temperature ? resp.monitor.dialysate_temperature : ''
|
910
|
|
- this.form.temperature = ''
|
|
910
|
+ this.form.temperature = resp.monitor.temperature ? resp.monitor.temperature : ''
|
911
|
911
|
this.form.replacement_rate = resp.monitor.replacement_rate ? resp.monitor.replacement_rate : ''
|
912
|
912
|
this.form.heparin = resp.monitor.heparin ? resp.monitor.heparin : ''
|
913
|
913
|
this.form.dialysate_flow = resp.monitor.dialysate_flow ? resp.monitor.dialysate_flow : ''
|