Report.php 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. <?php
  2. namespace catchAdmin\report\controller;
  3. use catcher\base\CatchRequest as Request;
  4. use catcher\CatchResponse;
  5. use catcher\base\CatchController;
  6. use catchAdmin\report\model\Report as ReportModel;
  7. class Report extends CatchController
  8. {
  9. protected $reportModel;
  10. public function __construct(ReportModel $reportModel)
  11. {
  12. $this->reportModel = $reportModel;
  13. }
  14. /**
  15. * 首页数量数据
  16. * @param Request $request
  17. */
  18. public function homePageCountData(Request $request)
  19. {
  20. // 部门数据
  21. $department_data = $this->reportModel->getDepartmentCountData() ?: [];
  22. // 用户数据
  23. $user_data = $this->reportModel->getDeviceUserCountData() ?: [];
  24. $data = array_merge($department_data, $user_data);
  25. return CatchResponse::success($data);
  26. }
  27. /**
  28. * 基站增长趋势数据
  29. * @param Request $request
  30. */
  31. public function stationGrowthTrendData(Request $request)
  32. {
  33. $data = $this->reportModel->getStationGrowthTrendData() ?: [];
  34. return CatchResponse::success($data);
  35. }
  36. /**
  37. * 用户设备增长趋势数据
  38. * @param Request $request
  39. */
  40. public function deviceGrowthTrendData(Request $request)
  41. {
  42. $data = $this->reportModel->getDeviceGrowthTrendData() ?: [];
  43. return CatchResponse::success($data);
  44. }
  45. /**
  46. * 设备类型统计
  47. * @param Request $request
  48. */
  49. public function hydraulicCount(Request $request)
  50. {
  51. $list =array(
  52. ['type'=>'液压泵','name'=>'在线','value'=>103],
  53. ['type'=>'液压泵','name'=>'离线','value'=>17],
  54. ['type'=>'液压泵','name'=>'其他','value'=>28],
  55. ['type'=>'液压泵','name'=>'总数','value'=>148],
  56. ['type'=>'液压扳手','name'=>'合格','value'=>140],
  57. ['type'=>'液压扳手','name'=>'不合格','value'=>24],
  58. ['type'=>'液压扳手','name'=>'总数','value'=>164],
  59. );
  60. $pump_bar=array(
  61. 'xData'=>['总数','B1','B2','B3','B4','B5',],
  62. 'yData'=>[250,100,20,30,60,40],
  63. );
  64. $pump_pie=array(
  65. ['name'=>'在线','value'=>113],
  66. ['name'=>'离线','value'=>17],
  67. ['name'=>'其他','value'=>18],
  68. );
  69. $wrench_bar=array(
  70. 'xData'=>['总数','A1','A2','A3','A4','A5',],
  71. 'yData'=>[230,103,17,50,35,25],
  72. );
  73. $wrench_pie=array(
  74. ['name'=>'合格','value'=>103],
  75. ['name'=>'不合格','value'=>17],
  76. );
  77. $data=array(
  78. 'list'=>$list,
  79. 'pump_bar'=>$pump_bar,
  80. 'pump_pie'=>$pump_pie,
  81. 'wrench_bar'=>$wrench_bar,
  82. 'wrench_pie'=>$wrench_pie,
  83. );
  84. return CatchResponse::success($data);
  85. }
  86. /**
  87. * 风场设备统计
  88. * @param Request $request
  89. */
  90. public function windCount(Request $request)
  91. {
  92. $list =array(
  93. ['name'=>'风场1','total'=>103,'online'=>20,'offline'=>40],
  94. ['name'=>'风场2','total'=>103,'online'=>20,'offline'=>40],
  95. ['name'=>'风场3','total'=>42,'online'=>20,'offline'=>40],
  96. ['name'=>'风场4','total'=>10,'online'=>20,'offline'=>40],
  97. ['name'=>'风场5','total'=>103,'online'=>20,'offline'=>40],
  98. ['name'=>'风场6','total'=>103,'online'=>20,'offline'=>40],
  99. ['name'=>'风场7','total'=>123,'online'=>20,'offline'=>40],
  100. ['name'=>'风场8','total'=>103,'online'=>20,'offline'=>40],
  101. ['name'=>'风场9','total'=>103,'online'=>20,'offline'=>40],
  102. );
  103. $xdata=['风场1','风场2','风场3','风场4','风场5','风场6','风场7','风场8','风场9',];
  104. $ydata=[20,30,49,20,56,54,87,23,69];
  105. $data=array(
  106. 'list'=>$list,
  107. 'xdata'=>$xdata,
  108. 'ydata'=>$ydata,
  109. );
  110. return CatchResponse::success($data);
  111. }
  112. /**
  113. * 告警统计
  114. * @param Request $request
  115. */
  116. public function alarmDeviceCount(Request $request)
  117. {
  118. $list =array(
  119. ['type'=>'液压泵','name'=>'电量告警','value'=>100],
  120. ['type'=>'液压泵','name'=>'液压油偏低','value'=>120],
  121. ['type'=>'液压泵','name'=>'液压油偏高','value'=>30],
  122. ['type'=>'液压泵','name'=>'总数','value'=>250],
  123. );
  124. $pump_bar=array(
  125. 'xData'=>['总数','电量告警','液压油偏低','液压油偏高'],
  126. 'yData'=>[250,100,120,30],
  127. );
  128. $pump_pie=array(
  129. ['name'=>'电量告警','value'=>100],
  130. ['name'=>'液压油偏低','value'=>120],
  131. ['name'=>'液压油偏高','value'=>30],
  132. );
  133. $data=array(
  134. 'list'=>$list,
  135. 'pump_bar'=>$pump_bar,
  136. 'pump_pie'=>$pump_pie,
  137. );
  138. return CatchResponse::success($data);
  139. }
  140. /**
  141. * 告警统计
  142. * @param Request $request
  143. */
  144. public function companyCount(Request $request)
  145. {
  146. $list =array(
  147. ['type'=>'测试部门1','name'=>'液压泵','value'=>100],
  148. ['type'=>'测试部门1','name'=>'液压扳手','value'=>120],
  149. ['type'=>'测试部门1','name'=>'法兰','value'=>30],
  150. ['type'=>'测试部门1','name'=>'总数','value'=>250],
  151. ['type'=>'测试部门2','name'=>'液压泵','value'=>100],
  152. ['type'=>'测试部门2','name'=>'液压扳手','value'=>120],
  153. ['type'=>'测试部门2','name'=>'法兰','value'=>30],
  154. ['type'=>'测试部门2','name'=>'总数','value'=>250],
  155. ['type'=>'测试部门3','name'=>'液压泵','value'=>100],
  156. ['type'=>'测试部门3','name'=>'液压扳手','value'=>120],
  157. ['type'=>'测试部门3','name'=>'法兰','value'=>30],
  158. ['type'=>'测试部门3','name'=>'总数','value'=>250],
  159. );
  160. $bar_data=array(
  161. 'xData'=>['测试部门1','测试部门2','测试部门3'],
  162. 'pump_yData'=>[120,120,130],
  163. 'wrench_yData'=>[40,150,90],
  164. 'flange_yData'=>[100,80,30],
  165. );
  166. $pump_pie=array(
  167. ['name'=>'电量告警','value'=>100],
  168. ['name'=>'液压油偏低','value'=>120],
  169. ['name'=>'液压油偏高','value'=>30],
  170. );
  171. $data=array(
  172. 'list'=>$list,
  173. 'bar_data'=>$bar_data,
  174. 'pump_pie'=>$pump_pie,
  175. );
  176. return CatchResponse::success($data);
  177. }
  178. }