csx 5 年 前
コミット
cdeb636637
共有1 個のファイルを変更した3 個の追加3 個の削除を含む
  1. 3 3
      src/pages/main/dialog/subMenu/MsgTip.vue

+ 3 - 3
src/pages/main/dialog/subMenu/MsgTip.vue ファイルの表示

@@ -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
   },