Ver código fonte

修改大屏页面展示功能

oyq28 2 anos atrás
pai
commit
b29f3384aa

+ 4 - 0
imcs-admin-boot/imcs-authority-server/src/main/java/com/github/zuihou/job/DashboardJob.java

@@ -157,6 +157,10 @@ public class DashboardJob {
             orderMap.put("orderData", orderData);
             dataScreenMap.put("orderMap", orderMap);
 
+            //获取合格率信息数据
+            Map orderStatistics = orderService.orderStatitcs();
+            dataScreenMap.put("orderStatistics", orderStatistics);
+
             Page<Repair> repairPage = new Page<Repair>(1L, 5);
             repairPage.setSearchCount(false);
             IPage<Repair> repairData = repairService.pageList(repairPage, new LbqWrapper<Repair>());