|
|
@@ -387,7 +387,7 @@ public class HlwPaymentDetailController extends JeecgController<HlwPaymentDetail
|
|
|
LocalDate lastDate = localDate.minusMonths(i + 1);
|
|
|
int increasedUser = hlwUserMapper.monthAddUser(DateUtils.asDate(lastDate));
|
|
|
map.put("value", increasedUser);
|
|
|
- map.put("x", lastDate.toString().substring(0, 7));
|
|
|
+ map.put("x", lastDate.getMonthValue()+"月");
|
|
|
list.add(0, map);
|
|
|
}
|
|
|
|
|
|
@@ -424,7 +424,7 @@ public class HlwPaymentDetailController extends JeecgController<HlwPaymentDetail
|
|
|
LocalDate lastDate = localDate.minusMonths(i + 1);
|
|
|
int monthOrder1 = hlwOrderMapper.monthAddOrder(DateUtils.asDate(lastDate));
|
|
|
map.put("value", monthOrder1);
|
|
|
- map.put("x", lastDate.toString().substring(0, 7));
|
|
|
+ map.put("x", lastDate.getMonthValue()+"月");
|
|
|
list1.add(0, map);
|
|
|
}
|
|
|
list.add(list1);
|