Commit 1c70778c3a9ed74961a4c032fa93dc5a78f81056
1 parent
a213c85f82
Exists in
master
and in
1 other branch
111
Showing 1 changed file with 5 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/AntenatalExaminationFacade.java
View file @
1c70778
... | ... | @@ -709,7 +709,11 @@ |
709 | 709 | if(null!=basicConfig1){ |
710 | 710 | Map<String, Object> map1 = new HashMap<>(); |
711 | 711 | map1.put("id", basicConfig1.getId()); |
712 | - map1.put("name", basicConfig1.getName()); | |
712 | + String name = basicConfig1.getName(); | |
713 | + if(name.indexOf("预警")>-1){ | |
714 | + name= name.replace("预警",""); | |
715 | + } | |
716 | + map1.put("name", name); | |
713 | 717 | dat1a.add(map1); |
714 | 718 | } |
715 | 719 | } |