|
@@ -61,7 +61,7 @@
|
61
|
61
|
<label class="name" for="txms">上次透后体重(kg)</label>
|
62
|
62
|
<div class="content">
|
63
|
63
|
<span class="text" id="txms">{{
|
64
|
|
- predialysis.weight_after_last_transparency
|
|
64
|
+ last_record.weight_after
|
65
|
65
|
}}</span>
|
66
|
66
|
</div>
|
67
|
67
|
</div>
|
|
@@ -77,10 +77,10 @@ export default {
|
77
|
77
|
created() {
|
78
|
78
|
if (
|
79
|
79
|
this.predialysis.weight_before > 0 &&
|
80
|
|
- this.predialysis.weight_after_last_transparency > 0
|
|
80
|
+ this.last_record.weight_after > 0
|
81
|
81
|
) {
|
82
|
82
|
add_weight = parseFloat(
|
83
|
|
- this.predialysis.weight_before - this.predialysis.weight_after_last_transparency
|
|
83
|
+ this.predialysis.weight_before - this.last_record.weight_after
|
84
|
84
|
).toFixed(2);
|
85
|
85
|
}
|
86
|
86
|
},
|