|
@@ -21,6 +21,7 @@
|
21
|
21
|
<th v-if="isShow('监测时间')" width="124px">时间</th>
|
22
|
22
|
<th v-if="isShow('血压')" width="72px">血压(mmHg)</th>
|
23
|
23
|
<th v-if="isShow('脉率')" width="80px">脉率(次/分)</th>
|
|
24
|
+ <th v-if="isShow('体温')" width="80px">体温(℃)</th>
|
24
|
25
|
<th v-if="isShow('呼吸')" width="110px">呼吸(次/分)</th>
|
25
|
26
|
<th v-if="isShow('血流量')" width="92px">血流量(ml/min)</th>
|
26
|
27
|
<th width="76px">静脉压/动脉压(mmHg)</th>
|
|
@@ -38,6 +39,8 @@
|
38
|
39
|
<td v-if="isShow('监测时间')">{{parseTime(item.operate_time, "{y}-{m}-{d} {h}:{i}")}}</td>
|
39
|
40
|
<td v-if="isShow('血压')">{{item.systolic_blood_pressure?item.systolic_blood_pressure:""}}/{{item.diastolic_blood_pressure?item.diastolic_blood_pressure:""}}</td>
|
40
|
41
|
<td v-if="isShow('脉率')">{{item.pulse_frequency?item.pulse_frequency:""}}</td>
|
|
42
|
+ <td v-if="isShow('体温')">{{item.temperature?item.temperature:""}}</td>
|
|
43
|
+ <td v-if="isShow('心率')">{{item.pulse_frequency?item.pulse_frequency:""}}</td>
|
41
|
44
|
<td v-if="isShow('呼吸')">{{item.breathing_rate?item.breathing_rate:""}}</td>
|
42
|
45
|
<td v-if="isShow('血流量')">{{item.blood_flow_volume?item.blood_flow_volume:""}}</td>
|
43
|
46
|
<td >{{item.venous_pressure?item.venous_pressure:""}}/{{item.arterial_pressure?item.arterial_pressure:""}}</td>
|
|
@@ -81,6 +84,10 @@
|
81
|
84
|
<label>脉率(次/分)</label>
|
82
|
85
|
<input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox" v-model="form.pulse_frequency">
|
83
|
86
|
</div>
|
|
87
|
+ <div class="cell" v-if="isShow('体温')">
|
|
88
|
+ <label>体温(℃)</label>
|
|
89
|
+ <input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox" v-model="form.temperature">
|
|
90
|
+ </div>
|
84
|
91
|
<div class="cell" v-if="isShow('呼吸频率')">
|
85
|
92
|
<label>呼吸频率(次/分)</label>
|
86
|
93
|
<input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox" v-model="form.breathing_rated">
|
|
@@ -247,6 +254,7 @@ export default {
|
247
|
254
|
ultrafiltration_volume: "", // 超滤量
|
248
|
255
|
sodium_concentration: "", // 钠浓度
|
249
|
256
|
dialysate_temperature: "", // 透析液温度
|
|
257
|
+ temperature: "", // 体温
|
250
|
258
|
replacement_rate: "", // 置换率
|
251
|
259
|
displacement_quantity: "", // 置换量
|
252
|
260
|
ktv: "", // KT/V(在线)
|
|
@@ -380,6 +388,12 @@ export default {
|
380
|
388
|
this.form.dialysate_temperature = monitor.dialysate_temperature;
|
381
|
389
|
}
|
382
|
390
|
|
|
391
|
+ if(monitor.temperature == 0){
|
|
392
|
+ this.form.temperature = ""
|
|
393
|
+ }else {
|
|
394
|
+ this.form.temperature = monitor.temperature;
|
|
395
|
+ }
|
|
396
|
+
|
383
|
397
|
if(monitor.replacement_rate == 0){
|
384
|
398
|
this.form.replacement_rate = ""
|
385
|
399
|
}else {
|
|
@@ -601,6 +615,12 @@ export default {
|
601
|
615
|
this.form.dialysate_temperature = this.currentRow.dialysate_temperature;
|
602
|
616
|
}
|
603
|
617
|
|
|
618
|
+ if(this.currentRow.temperature == 0){
|
|
619
|
+ this.form.temperature = ""
|
|
620
|
+ }else {
|
|
621
|
+ this.form.temperature = this.currentRow.temperature;
|
|
622
|
+ }
|
|
623
|
+
|
604
|
624
|
if(this.currentRow.replacement_rate == 0){
|
605
|
625
|
this.form.replacement_rate = ""
|
606
|
626
|
}else {
|
|
@@ -674,6 +694,7 @@ export default {
|
674
|
694
|
this.form.ultrafiltration_volume ="";// this.last_monitor_record.ultrafiltration_volume;
|
675
|
695
|
this.form.sodium_concentration = "";//this.last_monitor_record.sodium_concentration;
|
676
|
696
|
this.form.dialysate_temperature = ""; //this.last_monitor_record.dialysate_temperature;
|
|
697
|
+ this.form.temperature = ""; //this.last_monitor_record.temperature;
|
677
|
698
|
this.form.replacement_rate = ""; // this.last_monitor_record.replacement_rate;
|
678
|
699
|
this.form.displacement_quantity =""; // this.last_monitor_record.displacement_quantity;
|
679
|
700
|
this.form.ktv = ""; //this.last_monitor_record.ktv;
|
|
@@ -705,6 +726,7 @@ export default {
|
705
|
726
|
params.ultrafiltration_volume = this.form.ultrafiltration_volume;
|
706
|
727
|
params.sodium_concentration = this.form.sodium_concentration;
|
707
|
728
|
params.dialysate_temperature = this.form.dialysate_temperature;
|
|
729
|
+ params.temperature = this.form.temperature;
|
708
|
730
|
params.replacement_rate = this.form.replacement_rate;
|
709
|
731
|
params.displacement_quantity = this.form.displacement_quantity;
|
710
|
732
|
params.ktv = this.form.ktv;
|
|
@@ -735,6 +757,7 @@ export default {
|
735
|
757
|
this.form.ultrafiltration_volume = "";
|
736
|
758
|
this.form.sodium_concentration = "";
|
737
|
759
|
this.form.dialysate_temperature = "";
|
|
760
|
+ this.form.temperature = "";
|
738
|
761
|
this.form.replacement_rate = "";
|
739
|
762
|
this.form.displacement_quantity = "";
|
740
|
763
|
this.form.ktv = "";
|
|
@@ -772,6 +795,7 @@ export default {
|
772
|
795
|
params.ultrafiltration_volume = this.form.ultrafiltration_volume;
|
773
|
796
|
params.sodium_concentration = this.form.sodium_concentration;
|
774
|
797
|
params.dialysate_temperature = this.form.dialysate_temperature;
|
|
798
|
+ params.temperature = this.form.temperature;
|
775
|
799
|
params.replacement_rate = this.form.replacement_rate;
|
776
|
800
|
params.displacement_quantity = this.form.displacement_quantity;
|
777
|
801
|
params.ktv = this.form.ktv;
|
|
@@ -804,6 +828,7 @@ export default {
|
804
|
828
|
this.form.ultrafiltration_volume = "";
|
805
|
829
|
this.form.sodium_concentration = "";
|
806
|
830
|
this.form.dialysate_temperature = "";
|
|
831
|
+ this.form.temperature = "";
|
807
|
832
|
this.form.replacement_rate = "";
|
808
|
833
|
this.form.displacement_quantity = "";
|
809
|
834
|
this.form.ktv = "";
|