|
@@ -319,11 +319,15 @@
|
319
|
319
|
</td>
|
320
|
320
|
<td style="min-width: 45px">
|
321
|
321
|
<span v-if="getTime(monitor.operate_time) != ''">
|
322
|
|
- {{
|
|
322
|
+ <span v-if="monindex == 1">0</span>
|
|
323
|
+ <span v-if="monindex != 1">
|
|
324
|
+ {{
|
323
|
325
|
monitor.ultrafiltration_volume
|
324
|
326
|
? monitor.ultrafiltration_volume
|
325
|
327
|
: " "
|
326
|
|
- }}
|
|
328
|
+ }}
|
|
329
|
+ </span>
|
|
330
|
+
|
327
|
331
|
</span>
|
328
|
332
|
</td>
|
329
|
333
|
<!-- 生命体征 -->
|
|
@@ -378,10 +382,10 @@
|
378
|
382
|
<template
|
379
|
383
|
v-if=" (dialysisOrder && monitor.operate_time == dialysisOrder.start_time)&&(org_id!=10414) "
|
380
|
384
|
>
|
381
|
|
- 【开始透析】
|
|
385
|
+ 开始上机,引血100ml/min
|
382
|
386
|
</template>
|
383
|
|
- <span v-if="monitor.symptom || monitor.dispose || monitor.result">
|
384
|
|
- {{ monitor.symptom }} {{ monitor.dispose }} {{
|
|
387
|
+ <span v-if="monitor.symptom || monitor.dispose || monitor.result || monitor.end ">
|
|
388
|
+ {{ monitor.end }} {{ monitor.symptom }} {{ monitor.dispose }} {{
|
385
|
389
|
monitor.result
|
386
|
390
|
}}
|
387
|
391
|
</span>
|
|
@@ -1223,6 +1227,25 @@ export default {
|
1223
|
1227
|
this.monitors.push([]);
|
1224
|
1228
|
}
|
1225
|
1229
|
}
|
|
1230
|
+
|
|
1231
|
+ var tempmonitorflag = true;
|
|
1232
|
+ for (let index = 0; index < this.monitors.length; index++) {
|
|
1233
|
+ const monitor = this.monitors[index];
|
|
1234
|
+ this.monitors[index].end = "";
|
|
1235
|
+ if (Object.keys(monitor).length > 0 && index > 1) {
|
|
1236
|
+ if (
|
|
1237
|
+ (this.dialysisOrder &&
|
|
1238
|
+ monitor.operate_time == this.dialysisOrder.end_time)&&(this.org_id!=10414)
|
|
1239
|
+ ) {
|
|
1240
|
+ this.monitors[index].end = "结束治疗,予下机";
|
|
1241
|
+ tempmonitorflag = false;
|
|
1242
|
+ }
|
|
1243
|
+ if ((tempmonitorflag && index == this.monitors.length - 1)&&(this.org_id!=10414)) {
|
|
1244
|
+ this.monitors[index].end = "结束治疗,予下机";
|
|
1245
|
+ }
|
|
1246
|
+ }
|
|
1247
|
+ }
|
|
1248
|
+
|
1226
|
1249
|
this.jilurow = this.monitors.length + 1;
|
1227
|
1250
|
|
1228
|
1251
|
this.advice_jilurow = this.advices.length + 1;
|
|
@@ -1456,11 +1479,13 @@ export default {
|
1456
|
1479
|
}
|
1457
|
1480
|
},
|
1458
|
1481
|
"prescription.dialyzate": function() {
|
|
1482
|
+ console.log("this.prescription",this.prescription.dialyzate)
|
1459
|
1483
|
if(this.prescription.dialyzate !='undefined'){
|
1460
|
|
- if(prescription.dialyzate.indexOf('碳酸')>-1){
|
|
1484
|
+ this.prescription.dialyzate="碳酸"
|
|
1485
|
+ if(this.prescription.dialyzate.indexOf('碳酸')>-1){
|
1461
|
1486
|
this.prescription_dialyzate1 =true
|
1462
|
1487
|
this.prescription_dialyzate2 = false
|
1463
|
|
- }else if(prescription.dialyzate.indexOf('醋酸')>-1){
|
|
1488
|
+ }else if(this.prescription.dialyzate.indexOf('醋酸')>-1){
|
1464
|
1489
|
this.prescription_dialyzate1 =false
|
1465
|
1490
|
this.prescription_dialyzate2 = true
|
1466
|
1491
|
}else{
|