From fb24fbe32c9475f58ff17e691484337c95499124 Mon Sep 17 00:00:00 2001 From: "litao@lymsh.com" Date: Tue, 26 Sep 2017 18:06:23 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E6=83=A0=E5=88=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../operate/web/service/impl/PatientWeightServiceImpl.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/PatientWeightServiceImpl.java b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/PatientWeightServiceImpl.java index c426f9a..8bf14c6 100644 --- a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/PatientWeightServiceImpl.java +++ b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/PatientWeightServiceImpl.java @@ -682,25 +682,25 @@ public class PatientWeightServiceImpl extends BaseServiceImpl implements Patient low2 = 11.9; high = 3.8; high2 = 18.1; - color = "green"; + color = "#00EE76"; } else if(bmiD > 18.5 && bmiD <= 24.9){ low = 1.4; low2 = 11.9; high = 3.2; high2 = 15.9; - color = "blue"; + color = "#7EC0EE"; } else if(bmiD > 24.9 && bmiD < 30){ low = 1.1 ; low2 = 7.1; high = 3.1; high2 = 11.6; - color = "red"; + color = "#CD3333"; } else if(bmiD >= 30){ low = 0.8 ; low2 = 4.9; high = 2.1; high2 = 8.9; - color = "purple"; + color = "#CD00CD"; } Map highMap = new HashMap<>(); -- 1.8.3.1