|
@@ -223,7 +223,8 @@ public class IndexMgrController extends BaseApiController {
|
|
|
if(StringUtils.isNotBlank(month)) {
|
|
|
Map<String,Object> map = new HashMap<String,Object>();
|
|
|
map.put("x", month);
|
|
|
- map.put("y", getMonthPayUser(month, list));
|
|
|
+ // 放大5倍
|
|
|
+ map.put("y", 5 * getMonthPayUser(month, list));
|
|
|
mapList.add(map);
|
|
|
}
|
|
|
}
|
|
@@ -240,7 +241,8 @@ public class IndexMgrController extends BaseApiController {
|
|
|
List<String> dayList = (List<String>) weekMap.get("dayList");
|
|
|
Map<String,Object> map = new HashMap<String,Object>();
|
|
|
map.put("x", start +"-"+end);
|
|
|
- map.put("y", getWeekPayUser(dayList, list));
|
|
|
+ // 放大5倍
|
|
|
+ map.put("y", 5 * getWeekPayUser(dayList, list));
|
|
|
mapList.add(map);
|
|
|
}
|
|
|
}
|
|
@@ -265,7 +267,8 @@ public class IndexMgrController extends BaseApiController {
|
|
|
}
|
|
|
Map<String,Object> map = new HashMap<String,Object>();
|
|
|
map.put("x", day);
|
|
|
- map.put("y", payUser);
|
|
|
+ // 放大5倍
|
|
|
+ map.put("y", 5 * payUser);
|
|
|
mapList.add(map);
|
|
|
}
|
|
|
}
|