diff --git a/acupuncture-前台/src/views/screening/h5.vue b/acupuncture-前台/src/views/screening/h5.vue index 832a5778e..f4d9d9555 100644 --- a/acupuncture-前台/src/views/screening/h5.vue +++ b/acupuncture-前台/src/views/screening/h5.vue @@ -159,7 +159,7 @@ export default { BMITips: [ { - label: "偏瘦", + label: "体重过轻", score: 18.5, }, { @@ -167,7 +167,7 @@ export default { score: 23.9, }, { - label: "偏胖", + label: "超重", score: 27.9, }, { @@ -177,9 +177,9 @@ export default { ], BMIVerdict: { - 偏瘦: "1", + 体重过轻: "1", 正常: "2", - 偏胖: "3", + 超重: "3", 肥胖: "4", }, // 1.您觉得平时睡眠足够吗 ? @@ -445,20 +445,20 @@ export default { } }, // 通过BIM结果显示对于的结论 - // <18.5:偏瘦 + // <18.5:体重过轻 // 18.5~23.9:正常 - // 24~27.9:偏胖 + // 24~27.9:超重 // ≥28:肥胖 getBMITips(bmi) { let tips = ""; if (bmi < 18.5) { - tips = "偏瘦"; + tips = "体重过轻"; } if (bmi >= 18.5 && bmi < 23.9) { tips = "正常"; } if (bmi >= 24 && bmi < 27.9) { - tips = "偏胖"; + tips = "超重"; } if (bmi >= 28) { tips = "肥胖";