|
@@ -110,8 +110,7 @@
|
110
|
110
|
<span v-if="prescription.anticoagulant == '普通肝素'">mg</span>
|
111
|
111
|
<span v-if="prescription.anticoagulant == '无肝素'">mg</span>
|
112
|
112
|
<span v-if="prescription.anticoagulant == '低分子肝素钙'">iu</span>
|
113
|
|
- <span v-if="prescription.anticoagulant == '低分子肝素钠'&&(org_id!=9990&&org_id!=9675)">iu</span>
|
114
|
|
- <span v-if="prescription.anticoagulant == '低分子肝素钠'&&(org_id==9990||org_id==9675)">mg</span>
|
|
113
|
+ <span v-if="prescription.anticoagulant == '低分子肝素钠'">iu</span>
|
115
|
114
|
</div>
|
116
|
115
|
<div style="flex:1;">
|
117
|
116
|
维持
|
|
@@ -124,8 +123,7 @@
|
124
|
123
|
<span v-if="prescription.anticoagulant == '普通肝素'">mg/h</span>
|
125
|
124
|
<span v-if="prescription.anticoagulant == '无肝素'">mg/h</span>
|
126
|
125
|
<span v-if="prescription.anticoagulant == '低分子肝素钙'">iu/h</span>
|
127
|
|
- <span v-if="prescription.anticoagulant == '低分子肝素钠'&&(org_id!=9990&&org_id!=9675)">iu/h</span>
|
128
|
|
- <span v-if="prescription.anticoagulant == '低分子肝素钠'&&(org_id==9990||org_id==9675)">mg/h</span>
|
|
126
|
+ <span v-if="prescription.anticoagulant == '低分子肝素钠'">iu/h</span>
|
129
|
127
|
</div>
|
130
|
128
|
<div style="flex:1;">
|
131
|
129
|
总量:
|
|
@@ -138,8 +136,7 @@
|
138
|
136
|
<span v-if="prescription.anticoagulant == '普通肝素'">mg</span>
|
139
|
137
|
<span v-if="prescription.anticoagulant == '无肝素'">mg</span>
|
140
|
138
|
<span v-if="prescription.anticoagulant == '低分子肝素钙'">iu</span>
|
141
|
|
- <span v-if="prescription.anticoagulant == '低分子肝素钠'&&(org_id!=9990&&org_id!=9675)">iu</span>
|
142
|
|
- <span v-if="prescription.anticoagulant == '低分子肝素钠'&&(org_id==9990||org_id==9675)">mg</span>
|
|
139
|
+ <span v-if="prescription.anticoagulant == '低分子肝素钠'">iu</span>
|
143
|
140
|
</div>
|
144
|
141
|
</div>
|
145
|
142
|
<div style="display: flex;border-left: 1px solid black;border-right: 1px solid black;padding: 5px;">
|
|
@@ -417,7 +414,7 @@
|
417
|
414
|
</td>
|
418
|
415
|
<td>
|
419
|
416
|
<template
|
420
|
|
- v-if=" (dialysisOrder && monitor.operate_time == dialysisOrder.start_time)&&(org_id!=10414) "
|
|
417
|
+ v-if=" (dialysisOrder && monitor.operate_time == dialysisOrder.start_time) "
|
421
|
418
|
>
|
422
|
419
|
开始上机,引血100ml/min
|
423
|
420
|
</template>
|
|
@@ -1293,12 +1290,12 @@ export default {
|
1293
|
1290
|
if (Object.keys(monitor).length > 0 && index > 1) {
|
1294
|
1291
|
if (
|
1295
|
1292
|
(this.dialysisOrder &&
|
1296
|
|
- monitor.operate_time == this.dialysisOrder.end_time)&&(this.org_id!=10414)
|
|
1293
|
+ monitor.operate_time == this.dialysisOrder.end_time)
|
1297
|
1294
|
) {
|
1298
|
1295
|
this.monitors[index].end = "结束治疗,予下机";
|
1299
|
1296
|
tempmonitorflag = false;
|
1300
|
1297
|
}
|
1301
|
|
- if ((tempmonitorflag && index == this.monitors.length - 1)&&(this.org_id!=10414)) {
|
|
1298
|
+ if ((tempmonitorflag && index == this.monitors.length - 1)) {
|
1302
|
1299
|
this.monitors[index].end = "结束治疗,予下机";
|
1303
|
1300
|
}
|
1304
|
1301
|
}
|