|
@@ -20,6 +20,7 @@
|
20
|
20
|
<tr @click="selectRow(-1, null)">
|
21
|
21
|
<th v-if="isShow('监测时间')" width="124px">时间</th>
|
22
|
22
|
<th v-if="isShow('血压')" width="72px">血压(mmHg)</th>
|
|
23
|
+ <th v-if="isShow('体温')" width="80px">体温(℃)</th>
|
23
|
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>
|
|
@@ -37,6 +38,7 @@
|
37
|
38
|
<tr v-for="(item,index) in monitorRecords" :key="index" :value="item.value" @click="selectRow(index, item)" :class="index==currentIndex?rowClass:''">
|
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>
|
|
41
|
+ <td v-if="isShow('体温')">{{item.temperature?item.temperature:""}}</td>
|
40
|
42
|
<td v-if="isShow('心率')">{{item.pulse_frequency?item.pulse_frequency:""}}</td>
|
41
|
43
|
<td v-if="isShow('呼吸')">{{item.breathing_rate?item.breathing_rate:""}}</td>
|
42
|
44
|
<td v-if="isShow('血流量')">{{item.blood_flow_volume?item.blood_flow_volume:""}}</td>
|
|
@@ -81,6 +83,10 @@
|
81
|
83
|
<label>心率(次/分)</label>
|
82
|
84
|
<input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox" v-model="form.pulse_frequency">
|
83
|
85
|
</div>
|
|
86
|
+ <div class="cell" v-if="isShow('体温')">
|
|
87
|
+ <label>体温(℃)</label>
|
|
88
|
+ <input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox" v-model="form.temperature">
|
|
89
|
+ </div>
|
84
|
90
|
<div class="cell" v-if="isShow('呼吸频率')">
|
85
|
91
|
<label>呼吸频率(次/分)</label>
|
86
|
92
|
<input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox" v-model="form.breathing_rated">
|
|
@@ -247,6 +253,7 @@ export default {
|
247
|
253
|
ultrafiltration_volume: "", // 超滤量
|
248
|
254
|
sodium_concentration: "", // 钠浓度
|
249
|
255
|
dialysate_temperature: "", // 透析液温度
|
|
256
|
+ temperature: "", // 体温
|
250
|
257
|
replacement_rate: "", // 置换率
|
251
|
258
|
displacement_quantity: "", // 置换量
|
252
|
259
|
ktv: "", // KT/V(在线)
|
|
@@ -380,6 +387,12 @@ export default {
|
380
|
387
|
this.form.dialysate_temperature = monitor.dialysate_temperature;
|
381
|
388
|
}
|
382
|
389
|
|
|
390
|
+ if(monitor.temperature == 0){
|
|
391
|
+ this.form.temperature = ""
|
|
392
|
+ }else {
|
|
393
|
+ this.form.temperature = monitor.temperature;
|
|
394
|
+ }
|
|
395
|
+
|
383
|
396
|
if(monitor.replacement_rate == 0){
|
384
|
397
|
this.form.replacement_rate = ""
|
385
|
398
|
}else {
|
|
@@ -601,6 +614,12 @@ export default {
|
601
|
614
|
this.form.dialysate_temperature = this.currentRow.dialysate_temperature;
|
602
|
615
|
}
|
603
|
616
|
|
|
617
|
+ if(this.currentRow.temperature == 0){
|
|
618
|
+ this.form.temperature = ""
|
|
619
|
+ }else {
|
|
620
|
+ this.form.temperature = this.currentRow.temperature;
|
|
621
|
+ }
|
|
622
|
+
|
604
|
623
|
if(this.currentRow.replacement_rate == 0){
|
605
|
624
|
this.form.replacement_rate = ""
|
606
|
625
|
}else {
|
|
@@ -674,6 +693,7 @@ export default {
|
674
|
693
|
this.form.ultrafiltration_volume ="";// this.last_monitor_record.ultrafiltration_volume;
|
675
|
694
|
this.form.sodium_concentration = "";//this.last_monitor_record.sodium_concentration;
|
676
|
695
|
this.form.dialysate_temperature = ""; //this.last_monitor_record.dialysate_temperature;
|
|
696
|
+ this.form.temperature = ""; //this.last_monitor_record.temperature;
|
677
|
697
|
this.form.replacement_rate = ""; // this.last_monitor_record.replacement_rate;
|
678
|
698
|
this.form.displacement_quantity =""; // this.last_monitor_record.displacement_quantity;
|
679
|
699
|
this.form.ktv = ""; //this.last_monitor_record.ktv;
|
|
@@ -705,6 +725,7 @@ export default {
|
705
|
725
|
params.ultrafiltration_volume = this.form.ultrafiltration_volume;
|
706
|
726
|
params.sodium_concentration = this.form.sodium_concentration;
|
707
|
727
|
params.dialysate_temperature = this.form.dialysate_temperature;
|
|
728
|
+ params.temperature = this.form.temperature;
|
708
|
729
|
params.replacement_rate = this.form.replacement_rate;
|
709
|
730
|
params.displacement_quantity = this.form.displacement_quantity;
|
710
|
731
|
params.ktv = this.form.ktv;
|
|
@@ -735,6 +756,7 @@ export default {
|
735
|
756
|
this.form.ultrafiltration_volume = "";
|
736
|
757
|
this.form.sodium_concentration = "";
|
737
|
758
|
this.form.dialysate_temperature = "";
|
|
759
|
+ this.form.temperature = "";
|
738
|
760
|
this.form.replacement_rate = "";
|
739
|
761
|
this.form.displacement_quantity = "";
|
740
|
762
|
this.form.ktv = "";
|
|
@@ -772,6 +794,7 @@ export default {
|
772
|
794
|
params.ultrafiltration_volume = this.form.ultrafiltration_volume;
|
773
|
795
|
params.sodium_concentration = this.form.sodium_concentration;
|
774
|
796
|
params.dialysate_temperature = this.form.dialysate_temperature;
|
|
797
|
+ params.temperature = this.form.temperature;
|
775
|
798
|
params.replacement_rate = this.form.replacement_rate;
|
776
|
799
|
params.displacement_quantity = this.form.displacement_quantity;
|
777
|
800
|
params.ktv = this.form.ktv;
|
|
@@ -804,6 +827,7 @@ export default {
|
804
|
827
|
this.form.ultrafiltration_volume = "";
|
805
|
828
|
this.form.sodium_concentration = "";
|
806
|
829
|
this.form.dialysate_temperature = "";
|
|
830
|
+ this.form.temperature = "";
|
807
|
831
|
this.form.replacement_rate = "";
|
808
|
832
|
this.form.displacement_quantity = "";
|
809
|
833
|
this.form.ktv = "";
|