|
@@ -115,13 +115,13 @@
|
115
|
115
|
</div>
|
116
|
116
|
<div class="cell">
|
117
|
117
|
<label>静脉压(mmHg)</label>
|
118
|
|
- <input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox"
|
119
|
|
- 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>
|
120
|
120
|
</div>
|
121
|
121
|
<div class="cell" v-if="isShow('跨膜压')">
|
122
|
122
|
<label>跨膜压(mmHg)</label>
|
123
|
|
- <input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox"
|
124
|
|
- 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>
|
125
|
125
|
</div>
|
126
|
126
|
<div class="cell" v-if="isShow('超滤量')">
|
127
|
127
|
<label v-if="template_id == 6">超滤量(ml)</label>
|
|
@@ -136,8 +136,8 @@
|
136
|
136
|
</div>
|
137
|
137
|
<div class="cell">
|
138
|
138
|
<label>动脉压(mmHg)</label>
|
139
|
|
- <input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox"
|
140
|
|
- 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>
|
141
|
141
|
</div>
|
142
|
142
|
<div class="cell" v-if="isShow('钠浓度')">
|
143
|
143
|
<label>钠浓度(mmol/L)</label>
|
|
@@ -340,6 +340,15 @@
|
340
|
340
|
this.form.operate_time = this.pickertime.getTime()
|
341
|
341
|
},
|
342
|
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
|
+ },
|
343
|
352
|
isShow (name) {
|
344
|
353
|
var filedList = this.$store.getters.user.fileds
|
345
|
354
|
|
|
@@ -922,10 +931,10 @@
|
922
|
931
|
this.form.conductivity = ''
|
923
|
932
|
this.form.displacement_flow_quantity = ''
|
924
|
933
|
|
925
|
|
- this.last_monitor_record.sodium_concentration =
|
926
|
|
- monitor.sodium_concentration
|
927
|
|
- this.last_monitor_record.dialysate_temperature =
|
928
|
|
- 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
|
929
|
938
|
|
930
|
939
|
Toast.success('新增成功')
|
931
|
940
|
this.formPanel = false
|