|
@@ -258,8 +258,8 @@
|
258
|
258
|
style="width: 70px; text-align: center"
|
259
|
259
|
>
|
260
|
260
|
<span> {{
|
261
|
|
- prescription.displace_liqui_value
|
262
|
|
- ? prescription.displace_liqui_value
|
|
261
|
+ prescription.replacement_total
|
|
262
|
+ ? prescription.replacement_total
|
263
|
263
|
: "/"
|
264
|
264
|
}}
|
265
|
265
|
</span>
|
|
@@ -358,7 +358,8 @@
|
358
|
358
|
<div class="inline_block" style="flex: 1">
|
359
|
359
|
上次透后体重:
|
360
|
360
|
<div class="under_line" style="width: 50px; text-align: center">
|
361
|
|
- {{lastWeight.weight_after?lastWeight.weight_after:"未称重"}}
|
|
361
|
+ <span v-if="lastWeight!=null && lastWeight.weight_after>0">{{lastWeight.weight_after?lastWeight.weight_after:"未称重"}}</span>
|
|
362
|
+ <span v-if=" lastWeight!=null &&lastWeight.weight_after<=0">{{afterdialysis.last_after_weight?afterdialysis.last_after_weight:"未称重"}}</span>
|
362
|
363
|
</div>
|
363
|
364
|
kg
|
364
|
365
|
</div>
|
|
@@ -381,7 +382,8 @@
|
381
|
382
|
体重增加:
|
382
|
383
|
<div class="under_line" style="width: 70px; text-align: center">
|
383
|
384
|
<span>
|
384
|
|
- {{ (predialysis.weight_before - lastWeight.weight_after).toFixed(2)}}
|
|
385
|
+ <span v-if="lastWeight.weight_after>0">{{ (predialysis.weight_before - predialysis.additional_weight - lastWeight.weight_after).toFixed(2)}}</span>
|
|
386
|
+ <span v-if="lastWeight.weight_after<=0">{{ (predialysis.weight_before - predialysis.additional_weight -afterdialysis.last_after_weight).toFixed(2)}}</span>
|
385
|
387
|
</span>
|
386
|
388
|
</div>
|
387
|
389
|
kg
|
|
@@ -985,9 +987,12 @@
|
985
|
987
|
<td>
|
986
|
988
|
<div class="row" style="padding: 2px 0;line-height:23px;display:flex;">
|
987
|
989
|
<div class="inline_block" style="flex: 1">
|
988
|
|
- 穿刺护士:
|
|
990
|
+ 上机护士:
|
|
991
|
+ <!-- <span v-if="predialysis.internal_fistula!=''">111</span>
|
|
992
|
+ <span v-if="predialysis.catheter!=''">222</span> -->
|
989
|
993
|
<div class="under_line"
|
990
|
994
|
style="width: 90px; text-align: center"
|
|
995
|
+ v-if="predialysis.internal_fistula!=''"
|
991
|
996
|
>
|
992
|
997
|
<span
|
993
|
998
|
style="height: 30px; display: inline-block"
|
|
@@ -1021,6 +1026,43 @@
|
1021
|
1026
|
v-else
|
1022
|
1027
|
/>
|
1023
|
1028
|
</div>
|
|
1029
|
+
|
|
1030
|
+ <div class="under_line"
|
|
1031
|
+ style="width: 90px; text-align: center"
|
|
1032
|
+ v-if="predialysis.catheter!=''"
|
|
1033
|
+ >
|
|
1034
|
+ <span
|
|
1035
|
+ style="height: 30px; display: inline-block"
|
|
1036
|
+ v-if="
|
|
1037
|
+ setAdminUserES(
|
|
1038
|
+ dialysisOrder == null
|
|
1039
|
+ ? 0
|
|
1040
|
+ : dialysisOrder.change_nurse
|
|
1041
|
+ ) == ''
|
|
1042
|
+ "
|
|
1043
|
+ >
|
|
1044
|
+ {{
|
|
1045
|
+ getAdminUser(
|
|
1046
|
+ dialysisOrder == null
|
|
1047
|
+ ? 0
|
|
1048
|
+ : dialysisOrder.change_nurse
|
|
1049
|
+ )
|
|
1050
|
+ }}</span
|
|
1051
|
+ >
|
|
1052
|
+ <img
|
|
1053
|
+ style="height: 30px"
|
|
1054
|
+ :src="
|
|
1055
|
+ setAdminUserES(
|
|
1056
|
+ dialysisOrder == null
|
|
1057
|
+ ? 0
|
|
1058
|
+ : dialysisOrder.change_nurse
|
|
1059
|
+ )
|
|
1060
|
+ "
|
|
1061
|
+ alt=""
|
|
1062
|
+ srcset=""
|
|
1063
|
+ v-else
|
|
1064
|
+ />
|
|
1065
|
+ </div>
|
1024
|
1066
|
</div>
|
1025
|
1067
|
<div class="inline_block" style="flex: 1">
|
1026
|
1068
|
治疗护士:
|