Commit fb24fbe32c9475f58ff17e691484337c95499124

Authored by litao@lymsh.com
1 parent 1d3d058688

优惠券

Showing 1 changed file with 4 additions and 4 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/PatientWeightServiceImpl.java View file @ fb24fbe
... ... @@ -682,25 +682,25 @@
682 682 low2 = 11.9;
683 683 high = 3.8;
684 684 high2 = 18.1;
685   - color = "green";
  685 + color = "#00EE76";
686 686 } else if(bmiD > 18.5 && bmiD <= 24.9){
687 687 low = 1.4;
688 688 low2 = 11.9;
689 689 high = 3.2;
690 690 high2 = 15.9;
691   - color = "blue";
  691 + color = "#7EC0EE";
692 692 } else if(bmiD > 24.9 && bmiD < 30){
693 693 low = 1.1 ;
694 694 low2 = 7.1;
695 695 high = 3.1;
696 696 high2 = 11.6;
697   - color = "red";
  697 + color = "#CD3333";
698 698 } else if(bmiD >= 30){
699 699 low = 0.8 ;
700 700 low2 = 4.9;
701 701 high = 2.1;
702 702 high2 = 8.9;
703   - color = "purple";
  703 + color = "#CD00CD";
704 704 }
705 705  
706 706 Map<Integer, Double> highMap = new HashMap<>();