date-quality-control-statistics.component.html 5.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <div class="searchDataWrap">
  2. <div class="searchData">
  3. <app-custom-change-date #customChangeDate [isShowType]="true"></app-custom-change-date>
  4. <div class="searchDataItem">
  5. <span class="label">统计分类</span>:
  6. <nz-select class="selectItem" [nzDropdownMatchSelectWidth]="false" nzAllowClear nzPlaceHolder="请选择统计分类" [(ngModel)]="statisticsTypeId" (nzOpenChange)="openChangeStatisticsType($event)">
  7. <ng-container *ngFor="let option of statisticsTypeList">
  8. <nz-option *ngIf="!isLoading" [nzLabel]="option.name" [nzValue]="option.id"></nz-option>
  9. </ng-container>
  10. <nz-option *ngIf="isLoading" nzDisabled nzCustomContent>
  11. <i nz-icon nzType="loading" class="loading-icon"></i> 搜索中...
  12. </nz-option>
  13. </nz-select>
  14. </div>
  15. </div>
  16. <div class="operation">
  17. <i class="icon_transport transport-gengduo" nz-tooltip nzTooltipTitle="更多搜索" (click)="showMore()"></i>
  18. <button nz-button class="btn default" (click)="search()">查询</button>
  19. <button nz-button class="btn default ml8" (click)="reset()">重置</button>
  20. <button nz-button class="btn default ml8" (click)="excelExport()" [nzLoading]="excelExportLoading">导出</button>
  21. </div>
  22. </div>
  23. <div class="moreFilter" *ngIf="fieldConfig.fields.groupDTO || fieldConfig.fields.userDTO || fieldConfig.fields.taskTypeDTO || fieldConfig.fields.buildingDTO || fieldConfig.fields.deptDTO">
  24. <span>{{fieldConfig.fields.groupDTO?.groupName}}</span>
  25. <span>{{fieldConfig.fields.userDTO?.name}}</span>
  26. <span>{{fieldConfig.fields.taskTypeDTO?.taskName}}</span>
  27. <span>{{fieldConfig.fields.buildingDTO?.buildingName}}</span>
  28. <span>{{fieldConfig.fields.deptDTO?.dept}}</span>
  29. </div>
  30. <nz-table class="table" [nzData]="listOfData" nzSize="middle" [nzShowPagination]="false" [nzLoading]="loading1" [nzScroll]="{ y: tableHeight + 'px' }" [nzFooter]="footerTpl">
  31. <thead (nzSortChange)="sort($event)" nzSingleSort>
  32. <tr>
  33. <th nzWidth="10%" nzShowSort nzSortKey="date" [(nzSort)]="sortCurrent.date">日期</th>
  34. <th nzWidth="9%" nzShowSort nzSortKey="totalCount" [(nzSort)]="sortCurrent.totalCount">工单数量</th>
  35. <th nzWidth="9%" nzShowSort nzSortKey="totalGrade" [(nzSort)]="sortCurrent.totalGrade">总积分</th>
  36. <th nzWidth="9%" nzShowSort nzSortKey="totalPrice" [(nzSort)]="sortCurrent.totalPrice">总费用</th>
  37. <th nzWidth="9%" nzShowSort nzSortKey="response_time_num" [(nzSort)]="sortCurrent.response_time_num">平均响应时间</th>
  38. <th nzWidth="9%" nzShowSort nzSortKey="arrive_time_num" [(nzSort)]="sortCurrent.arrive_time_num">平均到达时间</th>
  39. <th nzWidth="9%" nzShowSort nzSortKey="execution_time_num" [(nzSort)]="sortCurrent.execution_time_num">平均送达时间</th>
  40. <th nzWidth="9%" nzShowSort nzSortKey="aveper" [(nzSort)]="sortCurrent.aveper">按时完成达标率</th>
  41. <th nzWidth="9%" nzShowSort nzSortKey="total_time" [(nzSort)]="sortCurrent.total_time">平均总时间</th>
  42. <th nzWidth="9%" nzShowSort nzSortKey="five_count" [(nzSort)]="sortCurrent.five_count">五分钟内工单</th>
  43. <th nzWidth="9%" nzShowSort nzSortKey="special_close" [(nzSort)]="sortCurrent.special_close">特殊关闭数</th>
  44. </tr>
  45. </thead>
  46. <tbody>
  47. <tr *ngFor="let data of listOfData">
  48. <td>{{ data.date }}</td>
  49. <td>{{ data.totalCount }}</td>
  50. <td>{{ data.totalGrade }}</td>
  51. <td>{{ data.totalPrice }}</td>
  52. <td>{{ data.response_time_num }}</td>
  53. <td>{{ data.arrive_time_num }}</td>
  54. <td>{{ data.execution_time_num }}</td>
  55. <td>{{ data.aveper }}</td>
  56. <td>{{ data.total_time }}</td>
  57. <td>{{ data.five_count }}</td>
  58. <td>{{ data.special_close }}</td>
  59. </tr>
  60. </tbody>
  61. <ng-template #footerTpl>
  62. <table class="footTable">
  63. <tr *ngFor="let data of listOfDataEnd">
  64. <td style="width: 10%">{{ data.date }}</td>
  65. <td style="width: 9%">{{ data.totalCount }}</td>
  66. <td style="width: 9%">{{ data.totalGrade }}</td>
  67. <td style="width: 9%">{{ data.totalPrice }}</td>
  68. <td style="width: 9%">{{ data.response_time_num }}</td>
  69. <td style="width: 9%">{{ data.arrive_time_num }}</td>
  70. <td style="width: 9%">{{ data.execution_time_num }}</td>
  71. <td style="width: 9%">{{ data.aveper }}</td>
  72. <td style="width: 9%">{{ data.total_time }}</td>
  73. <td style="width: 9%">{{ data.five_count }}</td>
  74. <td style="width: 9%">{{ data.special_close }}</td>
  75. </tr>
  76. </table>
  77. </ng-template>
  78. </nz-table>
  79. <div class="pagination">
  80. <ng-template #totalTemplate let-total> 共 {{ total }} 条 </ng-template>
  81. <nz-pagination [(nzPageIndex)]="pageIndex" [(nzTotal)]="listLength" [(nzPageSize)]="pageSize" (nzPageIndexChange)="getList(pageIndex, sortCurrentKey, sortCurrentValue)" (nzPageSizeChange)="getList(pageIndex, sortCurrentKey, sortCurrentValue)" nzShowSizeChanger [nzPageSizeOptions]="[30,50,100,200]" [nzShowTotal]="totalTemplate"></nz-pagination>
  82. </div>
  83. <!-- 详细搜索 -->
  84. <app-distribution-search-more [fieldConfig]="fieldConfig" *ngIf="showSearchMore" [hosId]="hosId" [queryType]="queryType" [dutyId]="dutyId" [parentDutyId]="parentDutyId" (cancelEvent)="cancelEvent()" (submitEvent)="submitEvent($event)"></app-distribution-search-more>