|
@@ -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>
|
|
@@ -114,16 +115,17 @@
|
114
|
115
|
</div>
|
115
|
116
|
<div class="cell">
|
116
|
117
|
<label>静脉压(mmHg)</label>
|
117
|
|
- <input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox"
|
118
|
|
- v-model="form.venous_pressure">
|
|
118
|
+ <input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox" v-model="form.venous_pressure" style="width:60%">
|
|
119
|
+ <button style="width:30%;padding: 0.18rem 0; color: #fff; background: #409eff;" @click="venousPressureChange(1)" >转换</button>
|
119
|
120
|
</div>
|
120
|
121
|
<div class="cell" v-if="isShow('跨膜压')">
|
121
|
122
|
<label>跨膜压(mmHg)</label>
|
122
|
|
- <input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox"
|
123
|
|
- v-model="form.transmembrane_pressure">
|
|
123
|
+ <input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox" v-model="form.transmembrane_pressure" style="width:60%">
|
|
124
|
+ <button style="width:30%;padding: 0.18rem 0; color: #fff; background: #409eff;" @click="venousPressureChange(2)" >转换</button>
|
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>
|
|
@@ -134,8 +136,8 @@
|
134
|
136
|
</div>
|
135
|
137
|
<div class="cell">
|
136
|
138
|
<label>动脉压(mmHg)</label>
|
137
|
|
- <input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox"
|
138
|
|
- v-model="form.arterial_pressure">
|
|
139
|
+ <input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox" v-model="form.arterial_pressure" style="width:60%">
|
|
140
|
+ <button style="width:30%;padding: 0.18rem 0; color: #fff; background: #409eff;" @click="venousPressureChange(3)" >转换</button>
|
139
|
141
|
</div>
|
140
|
142
|
<div class="cell" v-if="isShow('钠浓度')">
|
141
|
143
|
<label>钠浓度(mmol/L)</label>
|
|
@@ -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();
|
|
@@ -337,6 +340,15 @@
|
337
|
340
|
this.form.operate_time = this.pickertime.getTime()
|
338
|
341
|
},
|
339
|
342
|
methods: {
|
|
343
|
+ venousPressureChange(type){
|
|
344
|
+ if (type == 1) {
|
|
345
|
+ this.form.venous_pressure = this.form.venous_pressure * 7.5
|
|
346
|
+ } else if(type == 2) {
|
|
347
|
+ this.form.transmembrane_pressure = this.form.transmembrane_pressure * 7.5
|
|
348
|
+ } else {
|
|
349
|
+ this.form.arterial_pressure = this.form.arterial_pressure * 7.5
|
|
350
|
+ }
|
|
351
|
+ },
|
340
|
352
|
isShow (name) {
|
341
|
353
|
var filedList = this.$store.getters.user.fileds
|
342
|
354
|
|
|
@@ -357,7 +369,8 @@
|
357
|
369
|
this.today_last_monitor_record = resp.monitor
|
358
|
370
|
|
359
|
371
|
|
360
|
|
- this.form.operate_time = Date.parse(new Date())
|
|
372
|
+ // this.form.operate_time = Date.parse(new Date())
|
|
373
|
+ this.form.operate_time = resp.monitor.operate_time ? (resp.monitor.operate_time+3600)* 1000 : Date.parse(new Date())
|
361
|
374
|
this.form.pulse_frequency = '' //this.last_monitor_record.pulse_frequency;
|
362
|
375
|
this.form.breathing_rated = resp.monitor.breathing_rate?resp.monitor.breathing_rate:'';
|
363
|
376
|
this.form.systolic_bp = '' //this.last_monitor_record.systolic_blood_pressure;
|
|
@@ -367,7 +380,7 @@
|
367
|
380
|
this.form.arterial_pressure = '' //this.last_monitor_record.arterial_pressure;
|
368
|
381
|
this.form.transmembrane_pressure = '' // this.last_monitor_record.transmembrane_pressure;
|
369
|
382
|
this.form.ultrafiltration_rate = resp.monitor.ultrafiltration_rate?resp.monitor.ultrafiltration_rate:'';
|
370
|
|
- this.form.ultrafiltration_volume = ''// this.last_monitor_record.ultrafiltration_volume;
|
|
383
|
+ this.form.ultrafiltration_volume = resp.monitor.ultrafiltration_volume?resp.monitor.ultrafiltration_volume:'';
|
371
|
384
|
this.form.sodium_concentration = resp.monitor.sodium_concentration?resp.monitor.sodium_concentration:'';
|
372
|
385
|
this.form.dialysate_temperature = resp.monitor.dialysate_temperature?resp.monitor.dialysate_temperature:'';
|
373
|
386
|
this.form.temperature = resp.monitor.temperature?resp.monitor.temperature:'';
|
|
@@ -918,10 +931,10 @@
|
918
|
931
|
this.form.conductivity = ''
|
919
|
932
|
this.form.displacement_flow_quantity = ''
|
920
|
933
|
|
921
|
|
- this.last_monitor_record.sodium_concentration =
|
922
|
|
- monitor.sodium_concentration
|
923
|
|
- this.last_monitor_record.dialysate_temperature =
|
924
|
|
- monitor.dialysate_temperature
|
|
934
|
+ // this.last_monitor_record.sodium_concentration =
|
|
935
|
+ // monitor.sodium_concentration
|
|
936
|
+ // this.last_monitor_record.dialysate_temperature =
|
|
937
|
+ // monitor.dialysate_temperature
|
925
|
938
|
|
926
|
939
|
Toast.success('新增成功')
|
927
|
940
|
this.formPanel = false
|