修改页面和接口
This commit is contained in:
parent
09a1d68bd4
commit
ffd6f28797
|
@ -145,13 +145,17 @@ public class BigScreenController extends BaseController {
|
|||
JSONArray dataArray = new JSONArray();
|
||||
String month = DateUtils.parseDateToStr("YYYY-MM", new Date());
|
||||
list.forEach(l -> {
|
||||
String month1 = l.get("month").toString();
|
||||
if (month1.equals(month)){
|
||||
typeArray.add(l.get("type"));
|
||||
}
|
||||
JSONArray array = JSONArray.parseArray("[" + l.get("json").toString() + "]");
|
||||
array.forEach(a -> {
|
||||
Map<String, Object> m = (Map<String, Object>) a;
|
||||
tradeMap.put(m.get("label").toString(), m.get("label").toString());
|
||||
yearCount.addAndGet(Integer.parseInt(m.get("count").toString()));
|
||||
yearMoney.updateAndGet(v -> new Double((double) (v + Double.parseDouble(m.get("trade").toString()))));
|
||||
|
||||
});
|
||||
});
|
||||
// 所有小分类
|
||||
|
@ -162,6 +166,9 @@ public class BigScreenController extends BaseController {
|
|||
// 三个大分类
|
||||
for (int i = 0; i < list.size(); i++) {
|
||||
String month1 = list.get(i).get("month").toString();
|
||||
if (!month1.equals(month)){
|
||||
continue;
|
||||
}
|
||||
JSONArray array = JSONArray.parseArray("[" + list.get(i).get("json").toString() + "]");
|
||||
AtomicInteger count = new AtomicInteger();
|
||||
AtomicReference<Double> trade = new AtomicReference<>(0.0);
|
||||
|
|
Loading…
Reference in New Issue