|
@@ -301,9 +301,11 @@
|
301
|
301
|
<div class="inline_block" style="margin-left:10px;flex:1;">
|
302
|
302
|
置换量:
|
303
|
303
|
<div class="under_line" style="width: 70px;text-align: center">
|
304
|
|
- {{ prescription.displace_liqui_value ? prescription.displace_liqui_value : "/" }}
|
|
304
|
+ <span v-if="org_id != 9956">{{ prescription.displace_liqui_value ? prescription.displace_liqui_value : "/" }}</span>
|
|
305
|
+ <span v-else>{{ prescription.replacement_total ? prescription.replacement_total : "/" }}</span>
|
305
|
306
|
</div>
|
306
|
|
- L
|
|
307
|
+ <span v-if="org_id != 9956">L</span>
|
|
308
|
+ <span v-else>ml</span>
|
307
|
309
|
</div>
|
308
|
310
|
<div class="inline_block" style="margin-left:10px;flex:1;">
|
309
|
311
|
血流量:
|
|
@@ -344,7 +346,10 @@
|
344
|
346
|
<div class="inline_block" style="flex:1;">
|
345
|
347
|
上次透后体重:
|
346
|
348
|
<div class="under_line" style="width: 100px;text-align: center">
|
347
|
|
- {{ predialysis.weight_after_last_transparency ? parseFloat(predialysis.weight_after_last_transparency - predialysis.additional_weight).toFixed(1) : "未称重" }}
|
|
349
|
+ <span v-if="org_id != 9956">
|
|
350
|
+ {{ predialysis.weight_after_last_transparency ? parseFloat(predialysis.weight_after_last_transparency - predialysis.additional_weight).toFixed(1) : "未称重" }}
|
|
351
|
+ </span>
|
|
352
|
+ <span v-else>{{ assessmentafter.weight_after ? assessmentafter.weight_after : "/" }}</span>
|
348
|
353
|
</div>
|
349
|
354
|
kg
|
350
|
355
|
</div>
|
|
@@ -455,10 +460,13 @@
|
455
|
460
|
<div class="under_line" style="width: 50px;text-align: center;">
|
456
|
461
|
{{ prescription.anticoagulant_zongliang ? prescription.anticoagulant_zongliang : "/" }}
|
457
|
462
|
</div>
|
|
463
|
+ <span v-if="prescription.anticoagulant == 5">mg</span>
|
458
|
464
|
<span v-if="prescription.anticoagulant == 4">mg</span>
|
459
|
465
|
<span v-if="prescription.anticoagulant == 3">iu</span>
|
460
|
|
- <span v-if="prescription.anticoagulant == 2">iu</span>
|
|
466
|
+ <span v-if="prescription.anticoagulant == 2">mg</span>
|
461
|
467
|
<span v-if="prescription.anticoagulant == 1">mg</span>
|
|
468
|
+ <span v-if="prescription.anticoagulant == 6">iu</span>
|
|
469
|
+ <span v-if="prescription.anticoagulant == 7">iu</span>
|
462
|
470
|
</div>
|
463
|
471
|
<div class="inline_block" style="margin-left:20px;">
|
464
|
472
|
透析机号:
|
|
@@ -1155,7 +1163,8 @@ export default {
|
1155
|
1163
|
zongliang_unit: "mg",
|
1156
|
1164
|
gaimingcheng_unit: "",
|
1157
|
1165
|
gaijiliang_unit: ""
|
1158
|
|
- }
|
|
1166
|
+ },
|
|
1167
|
+ assessmentafter:{}
|
1159
|
1168
|
};
|
1160
|
1169
|
},
|
1161
|
1170
|
methods: {
|
|
@@ -1497,6 +1506,7 @@ export default {
|
1497
|
1506
|
this.predialysis.blood_access_part_opera_id
|
1498
|
1507
|
);
|
1499
|
1508
|
this.afterdialysis = response.data.data.AssessmentAfterDislysis;
|
|
1509
|
+ this.assessmentafter = response.data.data.assessmentAfterDislysis;
|
1500
|
1510
|
this.operators = response.data.data.operators;
|
1501
|
1511
|
this.dialysisOrder =
|
1502
|
1512
|
response.data.data.dialysisOrder === null
|
|
@@ -1925,6 +1935,7 @@ export default {
|
1925
|
1935
|
this.nutrition_arr = getDataConfig("hemodialysis", "nutrition");
|
1926
|
1936
|
|
1927
|
1937
|
var xtuser = this.$store.getters.xt_user;
|
|
1938
|
+ this.org_id = xtuser.org.id
|
1928
|
1939
|
this.orgname = xtuser.org.org_name;
|
1929
|
1940
|
// this.orgname = "遂溪方济医院";
|
1930
|
1941
|
this.modeOptions = this.$store.getters.treatment_mode;
|