|
@@ -76,11 +76,11 @@ export default {
|
76
|
76
|
name: "LongAdviceSubMenu",
|
77
|
77
|
created() {
|
78
|
78
|
if (
|
79
|
|
- predialysis.weight_before > 0 &&
|
80
|
|
- predialysis.weight_after_last_transparency > 0
|
|
79
|
+ this.predialysis.weight_before > 0 &&
|
|
80
|
+ this.predialysis.weight_after_last_transparency > 0
|
81
|
81
|
) {
|
82
|
82
|
add_weight = parseFloat(
|
83
|
|
- predialysis.weight_before - predialysis.weight_after_last_transparency
|
|
83
|
+ this.predialysis.weight_before - this.predialysis.weight_after_last_transparency
|
84
|
84
|
).toFixed(2);
|
85
|
85
|
}
|
86
|
86
|
},
|