Commit e91f87c4b72325ffe954e1107e4ace2528718633
1 parent
0766cb531c
Exists in
master
and in
8 other branches
孕妇分娩后 变成产妇
Showing 1 changed file with 2 additions and 2 deletions
platform-common/src/main/java/com/lyms/platform/common/utils/StringUtils.java
View file @
e91f87c
... | ... | @@ -23,10 +23,10 @@ |
23 | 23 | int week = (days / 7); |
24 | 24 | String str = ""; |
25 | 25 | // if (week > 0) { |
26 | - str = week + "周+"; | |
26 | + str = week + "周"; | |
27 | 27 | // } |
28 | 28 | int day = (days % 7); |
29 | - return "孕" + str + (day > 0 ? "" + day + "天" : ""); | |
29 | + return "孕" + str + (day > 0 ? "+" + day + "天" : ""); | |
30 | 30 | } |
31 | 31 | |
32 | 32 | //体重克算成千克 |