From ad1557e35c7f97315042d47a5593830ee2305150 Mon Sep 17 00:00:00 2001 From: liuzhipeng <1747191978@qq.com> Date: Sat, 15 Mar 2025 21:02:23 +0800 Subject: [PATCH] =?UTF-8?q?bmi=E7=BB=93=E8=AE=BA=E5=80=BC=E8=B0=83?= =?UTF-8?q?=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- acupuncture-前台/src/views/screening/h5.vue | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) 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 = "肥胖";