synthesize-statistics.component.ts 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475
  1. import { Router } from '@angular/router';
  2. import { format, addMonths, startOfMonth, endOfMonth } from 'date-fns';
  3. import { Component, OnInit } from "@angular/core";
  4. import { MainService } from 'src/app/services/main.service';
  5. import { TabService } from '../../services/tab.service';
  6. @Component({
  7. selector: "app-synthesize-statistics",
  8. templateUrl: "./synthesize-statistics.component.html",
  9. styleUrls: ["./synthesize-statistics.component.less"],
  10. })
  11. export class SynthesizeStatisticsComponent implements OnInit {
  12. constructor(
  13. private mainService: MainService,
  14. private tabService: TabService,
  15. public router: Router,
  16. ) {}
  17. isLoading:Boolean = false;
  18. workData:any = []; //工单统计
  19. listOfData: any[] = []; //表格数据
  20. pageIndex: number = 1; //表格当前页码
  21. pageSize: number = 10; //表格每页展示条数
  22. listLength: number = 10; //表格总数据量
  23. activeIndex:any = 0;
  24. maintainData:any = []; //维修处理数据
  25. repairsOptions:any={} //报修来源 option
  26. malfunctionOptions:any={} //一级故障 option
  27. buildingOptions:any={} //楼栋报修 option
  28. deptCostData:any = [
  29. {
  30. name:'王'
  31. },
  32. {
  33. name:'王'
  34. },
  35. {
  36. name:'王'
  37. },
  38. {
  39. name:'王'
  40. },
  41. {
  42. name:'王'
  43. }
  44. ] //科室费用
  45. consumableData:any = [
  46. {
  47. name:'王'
  48. },
  49. {
  50. name:'王'
  51. },
  52. {
  53. name:'王'
  54. },
  55. {
  56. name:'王'
  57. },
  58. {
  59. name:'王'
  60. }
  61. ] //报修耗材
  62. ngOnInit() {
  63. this.search();
  64. }
  65. // 维修处理类型切换
  66. selectCheck(type){
  67. this.activeIndex = type
  68. this.getMaintainData();
  69. }
  70. // 故障来源
  71. repairsChart() {
  72. let postData:any = {
  73. startDate: this.dateRange[0],
  74. endDate: this.dateRange[1],
  75. type: 'sourceTop5',
  76. hosId: this.hosId,
  77. dutyId: this.dutyId,
  78. parentDutyId: this.parentDutyId,
  79. };
  80. this.mainService
  81. .getReportData(postData)
  82. .subscribe((result:any) => {
  83. let datas = result.data.map(i=>{
  84. return{
  85. name:i.name,
  86. value:i.sum
  87. }
  88. });
  89. this.repairsOptions = {
  90. tooltip: {
  91. trigger: "item",
  92. formatter: "{b}: {c} ({d}%)",
  93. },
  94. legend: {
  95. data: datas,
  96. left: 'left',
  97. },
  98. series: [
  99. {
  100. name: "",
  101. type: "pie",
  102. radius: ["30%", "50%"],
  103. center:["50%","55%"],
  104. data: datas,
  105. emphasis: {
  106. itemStyle: {
  107. shadowBlur: 10,
  108. shadowOffsetX: 0,
  109. shadowColor: 'rgba(0, 0, 0, 0.5)'
  110. }
  111. },
  112. label: {
  113. show: true,
  114. formatter: '{b}: {c} {d}%'
  115. },
  116. itemStyle: {
  117. normal: {
  118. //每根柱子颜色设置
  119. color: function (params) {
  120. let colorList = [
  121. "#33CC85",
  122. "#72C0DD",
  123. "#FAC958",
  124. "#546FC6",
  125. "#d35b7e",
  126. "#778ccC",
  127. "#fad354",
  128. "#aldee0",
  129. "#ee84a8",
  130. "#8475c5",
  131. "#b0d097",
  132. "#ffadbb",
  133. "#fd8c67",
  134. "#d495e0",
  135. ];
  136. return colorList[params.dataIndex];
  137. },
  138. },
  139. },
  140. },
  141. ],
  142. };
  143. });
  144. }
  145. // 一级故障
  146. malfunctionChart(){
  147. let postData:any = {
  148. startDate: this.dateRange[0],
  149. endDate: this.dateRange[1],
  150. type: 'firstCategoryTop5',
  151. hosId: this.hosId,
  152. dutyId: this.dutyId,
  153. parentDutyId: this.parentDutyId,
  154. };
  155. this.mainService
  156. .getReportData(postData)
  157. .subscribe((result:any) => {
  158. let datas = []
  159. let title = []
  160. for(let i of result.data){
  161. datas.push(i.sum)
  162. title.push(i.category)
  163. }
  164. this.malfunctionOptions = {
  165. tooltip: {
  166. trigger: 'axis',
  167. axisPointer: {
  168. type: 'shadow'
  169. }
  170. },
  171. grid: {
  172. left: '3%',
  173. right: '4%',
  174. bottom: '3%',
  175. containLabel: true
  176. },
  177. xAxis: [
  178. {
  179. type: 'category',
  180. data: title,
  181. axisTick: {
  182. show:false,
  183. alignWithLabel: true
  184. }
  185. }
  186. ],
  187. yAxis: [
  188. {
  189. type: 'value',
  190. axisLine: {
  191. show:false
  192. },
  193. axisTick:{
  194. show:false
  195. }
  196. }
  197. ],
  198. series: [
  199. {
  200. type: 'bar',
  201. barWidth: '30%',
  202. color: '#FFD68D',
  203. data: datas,
  204. label:{
  205. show:true,
  206. position: "top", // 展示在柱子的上方
  207. color: "#333"
  208. }
  209. }
  210. ]
  211. }
  212. });
  213. }
  214. // 楼栋报修
  215. buildingChart(){
  216. let postData:any = {
  217. startDate: this.dateRange[0],
  218. endDate: this.dateRange[1],
  219. type: 'buildingTop5',
  220. hosId: this.hosId,
  221. dutyId: this.dutyId,
  222. parentDutyId: this.parentDutyId,
  223. };
  224. this.mainService
  225. .getReportData(postData)
  226. .subscribe((result:any) => {
  227. let datas = []
  228. let title = []
  229. for(let i of result.data){
  230. datas.push(i.sum)
  231. title.push(i.name)
  232. }
  233. this.buildingOptions = {
  234. tooltip: {
  235. trigger: 'axis',
  236. axisPointer: {
  237. type: 'shadow'
  238. }
  239. },
  240. grid: {
  241. left: '3%',
  242. right: '4%',
  243. bottom: '3%',
  244. containLabel: true
  245. },
  246. xAxis: [
  247. {
  248. type: 'category',
  249. data: title,
  250. axisTick: {
  251. show:false,
  252. alignWithLabel: true
  253. }
  254. }
  255. ],
  256. yAxis: [
  257. {
  258. type: 'value',
  259. axisLine: {
  260. show:false
  261. },
  262. axisTick:{
  263. show:false
  264. }
  265. }
  266. ],
  267. series: [
  268. {
  269. type: 'bar',
  270. barWidth: '30%',
  271. color: '#72C0DD',
  272. data: datas,
  273. label:{
  274. show:true,
  275. position: "top", // 展示在柱子的上方
  276. color: "#333"
  277. }
  278. }
  279. ]
  280. }
  281. });
  282. }
  283. // 科室费用
  284. getDeptCostData() {
  285. let postData:any = {
  286. startDate: this.dateRange[0],
  287. endDate: this.dateRange[1],
  288. type: 'deptTop5',
  289. hosId: this.hosId,
  290. dutyId: this.dutyId,
  291. parentDutyId: this.parentDutyId,
  292. };
  293. this.mainService
  294. .getReportData(postData)
  295. .subscribe((result:any) => {
  296. this.deptCostData = result.data || [];
  297. });
  298. }
  299. // 耗材
  300. getConsumableData() {
  301. let postData:any = {
  302. startDate: this.dateRange[0],
  303. endDate: this.dateRange[1],
  304. type: 'consumableTop5',
  305. hosId: this.hosId,
  306. dutyId: this.dutyId,
  307. parentDutyId: this.parentDutyId,
  308. };
  309. this.mainService
  310. .getReportData(postData)
  311. .subscribe((result:any) => {
  312. this.isLoading = false;
  313. this.consumableData = result.data || [];
  314. });
  315. }
  316. // 更多跳转
  317. toPath(path){
  318. let flag = this.tabService.tabs.some(v => v.path === path);
  319. flag && this.tabService.deleteRouteSnapshot(path);
  320. this.tabService.setQueryParams('dateRange', this.dateRange);
  321. this.router.navigate([path], { replaceUrl: true });
  322. }
  323. // 判断更多是否显示
  324. showMore(path){
  325. let menus = JSON.parse(localStorage.getItem("menu"));
  326. return menus.find(v => v.link === 'maintenanceStatistics').childrens.some(v => v.link === path);
  327. }
  328. // 初始化缓存数据
  329. queryType:any;
  330. hosId:any;
  331. dutyId:any;
  332. parentDutyId:any;
  333. initSessionData(){
  334. let maintenanceStatistics = JSON.parse(sessionStorage.getItem('maintenanceStatistics'));
  335. let queryType:any = maintenanceStatistics.queryType;
  336. let hosId:any = maintenanceStatistics.hospitalId;
  337. let dutyId:any = maintenanceStatistics.dutyId;
  338. queryType = queryType ? +queryType : undefined;
  339. hosId = hosId ? +hosId : undefined;
  340. dutyId = dutyId ? +dutyId : undefined;
  341. this.queryType = queryType;
  342. if(queryType == 1){
  343. this.hosId = undefined;
  344. this.dutyId = undefined;
  345. this.parentDutyId = undefined;
  346. }else if(queryType == 2){
  347. this.hosId = hosId;
  348. this.dutyId = undefined;
  349. this.parentDutyId = undefined;
  350. }else if(queryType == 3){
  351. this.hosId = undefined;
  352. this.dutyId = dutyId;
  353. this.parentDutyId = undefined;
  354. }else if(queryType == 4){
  355. this.hosId = undefined;
  356. this.dutyId = undefined;
  357. this.parentDutyId = dutyId;
  358. }
  359. this.isLoading = true
  360. this.getWorkData();
  361. this.getMaintainData();
  362. this.repairsChart();
  363. this.malfunctionChart();
  364. this.buildingChart();
  365. this.getDeptCostData();
  366. this.getConsumableData();
  367. }
  368. // 表格数据
  369. loading1 = false;
  370. getList(num?: number, field?: string, sort?: string) {
  371. if (num !== undefined) {
  372. this.pageIndex = num;
  373. }
  374. let postData:any = {
  375. idx: this.pageIndex - 1,
  376. sum: this.pageSize,
  377. startDate: this.dateRange[0],
  378. endDate: this.dateRange[1],
  379. hosId: this.hosId,
  380. dutyId: this.dutyId,
  381. parentDutyId: this.parentDutyId,
  382. };
  383. this.loading1 = true;
  384. this.mainService
  385. .postCustom("itsm/report", "incidentWorkOrder", postData)
  386. .subscribe((result) => {
  387. this.loading1 = false;
  388. this.listOfData = result.dataList || [];
  389. this.listLength = result.totalCount;
  390. });
  391. }
  392. // 头部工单数据
  393. getWorkData() {
  394. let postData:any = {
  395. startDate: this.dateRange[0],
  396. endDate: this.dateRange[1],
  397. type: 'headerCount',
  398. hosId: this.hosId,
  399. dutyId: this.dutyId,
  400. parentDutyId: this.parentDutyId,
  401. };
  402. this.mainService
  403. .getReportData(postData)
  404. .subscribe((result:any) => {
  405. this.workData = result.data[0] || [];
  406. });
  407. }
  408. // 维修处理
  409. getMaintainData() {
  410. let postData:any = {
  411. startDate: this.dateRange[0],
  412. endDate: this.dateRange[1],
  413. type: 'userHandleTop5',
  414. groupType: this.activeIndex==0?'user':'group',
  415. hosId: this.hosId,
  416. dutyId: this.dutyId,
  417. parentDutyId: this.parentDutyId,
  418. };
  419. this.mainService
  420. .getReportData(postData)
  421. .subscribe((result:any) => {
  422. this.maintainData = result.data || [];
  423. });
  424. }
  425. // 重置
  426. reset(){
  427. this.dateRange = [format(startOfMonth(addMonths(new Date(), -1)), 'yyyy-MM-dd HH:mm:ss'), format(endOfMonth(addMonths(new Date(), -1)), 'yyyy-MM-dd HH:mm:ss')];
  428. this.activeIndex = 0;
  429. this.search();
  430. }
  431. // 搜索
  432. search() {
  433. this.initSessionData();
  434. }
  435. // 日期选择 日
  436. dateRange: any = [format(startOfMonth(addMonths(new Date(), -1)), 'yyyy-MM-dd HH:mm:ss'), format(endOfMonth(addMonths(new Date(), -1)), 'yyyy-MM-dd HH:mm:ss')]; //发起时间区间 天
  437. changeDate(result?): void {
  438. result[0] = format(result[0], 'yyyy-MM-dd') + ' ' + '00:00:00';
  439. result[1] = format(result[1], 'yyyy-MM-dd') + ' ' + '23:59:59';
  440. this.dateRange = result;
  441. // this.search();
  442. console.log(this.dateRange);
  443. }
  444. onCalendarChangeDate(dateArr){
  445. // console.log(dateArr)
  446. // if(dateArr.length == 2){
  447. // let dateStart = new Date(dateArr[0]);
  448. // let dateEnd = new Date(dateArr[1]);
  449. // dateStart.setHours(0,0,0);
  450. // dateEnd.setHours(23,59,59);
  451. // this.dateRange = [dateStart,dateEnd];
  452. // }
  453. }
  454. }