csx 5 years ago
parent
commit
cdeb636637
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/pages/main/dialog/subMenu/MsgTip.vue

+ 3 - 3
src/pages/main/dialog/subMenu/MsgTip.vue View File

76
   name: "LongAdviceSubMenu",
76
   name: "LongAdviceSubMenu",
77
   created() {
77
   created() {
78
     if (
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
       add_weight = parseFloat(
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
       ).toFixed(2);
84
       ).toFixed(2);
85
     }
85
     }
86
   },
86
   },