|
@@ -26,7 +26,8 @@
|
26
|
26
|
<th v-if="isShow('血流量')" width="92px">血流量(ml/min)</th>
|
27
|
27
|
<th width="76px">静脉压/动脉压(mmHg)</th>
|
28
|
28
|
<th v-if="isShow('跨膜压')" width="76px">跨膜压(mmHg)</th>
|
29
|
|
- <th v-if="isShow('超滤量')" width="76px">超滤量(L)</th>
|
|
29
|
+ <th v-if="isShow('超滤量') && template_id ==6" width="76px">超滤量(ml)</th>
|
|
30
|
+ <th v-if="isShow('超滤量') && template_id !=6" width="76px">超滤量(L)</th>
|
30
|
31
|
<th v-if="isShow('钠浓度')" width="92px">钠浓度(mmol/L)</th>
|
31
|
32
|
<th v-if="isShow('透析液温度')" width="82px">透析液温度(℃)</th>
|
32
|
33
|
<th v-if="isShow('置换率')" width="92px">置换率(L/h)</th>
|
|
@@ -123,7 +124,8 @@
|
123
|
124
|
v-model="form.transmembrane_pressure">
|
124
|
125
|
</div>
|
125
|
126
|
<div class="cell" v-if="isShow('超滤量')">
|
126
|
|
- <label>超滤量(L)</label>
|
|
127
|
+ <label v-if="template_id == 6">超滤量(ml)</label>
|
|
128
|
+ <label v-else>超滤量(L)</label>
|
127
|
129
|
<input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox"
|
128
|
130
|
v-model="form.ultrafiltration_volume">
|
129
|
131
|
</div>
|
|
@@ -262,7 +264,7 @@
|
262
|
264
|
currentIndex: -1,
|
263
|
265
|
currentRow: null,
|
264
|
266
|
rowClass: 'row-class-active',
|
265
|
|
-
|
|
267
|
+ template_id: 0,
|
266
|
268
|
visibility: false,
|
267
|
269
|
today_last_monitor_record : {},
|
268
|
270
|
propForm: {
|
|
@@ -309,6 +311,7 @@
|
309
|
311
|
},
|
310
|
312
|
created () {
|
311
|
313
|
var date = this.$route.query && this.$route.query.date
|
|
314
|
+ this.template_id = this.$store.getters.user.template_info.template_id;
|
312
|
315
|
// date *= 1000;
|
313
|
316
|
// var newDate = new Date(date);
|
314
|
317
|
// var cDate = new Date();
|
|
@@ -357,7 +360,8 @@
|
357
|
360
|
this.today_last_monitor_record = resp.monitor
|
358
|
361
|
|
359
|
362
|
|
360
|
|
- this.form.operate_time = Date.parse(new Date())
|
|
363
|
+ // this.form.operate_time = Date.parse(new Date())
|
|
364
|
+ this.form.operate_time = resp.monitor.operate_time ? (resp.monitor.operate_time+3600)* 1000 : Date.parse(new Date())
|
361
|
365
|
this.form.pulse_frequency = '' //this.last_monitor_record.pulse_frequency;
|
362
|
366
|
this.form.breathing_rated = resp.monitor.breathing_rate?resp.monitor.breathing_rate:'';
|
363
|
367
|
this.form.systolic_bp = '' //this.last_monitor_record.systolic_blood_pressure;
|
|
@@ -367,7 +371,7 @@
|
367
|
371
|
this.form.arterial_pressure = '' //this.last_monitor_record.arterial_pressure;
|
368
|
372
|
this.form.transmembrane_pressure = '' // this.last_monitor_record.transmembrane_pressure;
|
369
|
373
|
this.form.ultrafiltration_rate = resp.monitor.ultrafiltration_rate?resp.monitor.ultrafiltration_rate:'';
|
370
|
|
- this.form.ultrafiltration_volume = ''// this.last_monitor_record.ultrafiltration_volume;
|
|
374
|
+ this.form.ultrafiltration_volume = resp.monitor.ultrafiltration_volume?resp.monitor.ultrafiltration_volume:'';
|
371
|
375
|
this.form.sodium_concentration = resp.monitor.sodium_concentration?resp.monitor.sodium_concentration:'';
|
372
|
376
|
this.form.dialysate_temperature = resp.monitor.dialysate_temperature?resp.monitor.dialysate_temperature:'';
|
373
|
377
|
this.form.temperature = resp.monitor.temperature?resp.monitor.temperature:'';
|