1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <div class="searchDataWrap">
- <div class="searchData">
- <app-custom-change-date #customChangeDate [isShowType]="true"></app-custom-change-date>
- <div class="searchDataItem">
- <span class="label">统计分类</span>:
- <nz-select class="selectItem" [nzDropdownMatchSelectWidth]="false" nzAllowClear nzPlaceHolder="请选择统计分类" [(ngModel)]="statisticsTypeId" (nzOpenChange)="openChangeStatisticsType($event)">
- <ng-container *ngFor="let option of statisticsTypeList">
- <nz-option *ngIf="!isLoading" [nzLabel]="option.name" [nzValue]="option.id"></nz-option>
- </ng-container>
- <nz-option *ngIf="isLoading" nzDisabled nzCustomContent>
- <i nz-icon nzType="loading" class="loading-icon"></i> 搜索中...
- </nz-option>
- </nz-select>
- </div>
- </div>
- <div class="operation">
- <i class="icon_transport transport-gengduo" nz-tooltip nzTooltipTitle="更多搜索" (click)="showMore()"></i>
- <button nz-button class="btn default" (click)="search()">查询</button>
- <button nz-button class="btn default ml8" (click)="reset()">重置</button>
- <button nz-button class="btn default ml8" (click)="excelExport()" [nzLoading]="excelExportLoading">导出</button>
- </div>
- </div>
- <div class="moreFilter" *ngIf="fieldConfig.fields.groupDTO || fieldConfig.fields.userDTO || fieldConfig.fields.taskTypeDTO || fieldConfig.fields.buildingDTO || fieldConfig.fields.deptDTO">
- <span>{{fieldConfig.fields.groupDTO?.groupName}}</span>
- <span>{{fieldConfig.fields.userDTO?.name}}</span>
- <span>{{fieldConfig.fields.taskTypeDTO?.taskName}}</span>
- <span>{{fieldConfig.fields.buildingDTO?.buildingName}}</span>
- <span>{{fieldConfig.fields.deptDTO?.dept}}</span>
- </div>
- <nz-table class="table" [nzData]="listOfData" nzSize="middle" [nzShowPagination]="false" [nzLoading]="loading1" [nzScroll]="{ y: tableHeight + 'px' }" [nzFooter]="footerTpl">
- <thead (nzSortChange)="sort($event)" nzSingleSort>
- <tr>
- <th nzWidth="10%" nzShowSort nzSortKey="date" [(nzSort)]="sortCurrent.date">日期</th>
- <th nzWidth="9%" nzShowSort nzSortKey="totalCount" [(nzSort)]="sortCurrent.totalCount">工单数量</th>
- <th nzWidth="9%" nzShowSort nzSortKey="totalGrade" [(nzSort)]="sortCurrent.totalGrade">总积分</th>
- <th nzWidth="9%" nzShowSort nzSortKey="totalPrice" [(nzSort)]="sortCurrent.totalPrice">总费用</th>
- <th nzWidth="9%" nzShowSort nzSortKey="response_time_num" [(nzSort)]="sortCurrent.response_time_num">平均响应时间</th>
- <th nzWidth="9%" nzShowSort nzSortKey="arrive_time_num" [(nzSort)]="sortCurrent.arrive_time_num">平均到达时间</th>
- <th nzWidth="9%" nzShowSort nzSortKey="execution_time_num" [(nzSort)]="sortCurrent.execution_time_num">平均送达时间</th>
- <th nzWidth="9%" nzShowSort nzSortKey="aveper" [(nzSort)]="sortCurrent.aveper">按时完成达标率</th>
- <th nzWidth="9%" nzShowSort nzSortKey="total_time" [(nzSort)]="sortCurrent.total_time">平均总时间</th>
- <th nzWidth="9%" nzShowSort nzSortKey="five_count" [(nzSort)]="sortCurrent.five_count">五分钟内工单</th>
- <th nzWidth="9%" nzShowSort nzSortKey="special_close" [(nzSort)]="sortCurrent.special_close">特殊关闭数</th>
- </tr>
- </thead>
- <tbody>
- <tr *ngFor="let data of listOfData">
- <td>{{ data.date }}</td>
- <td>{{ data.totalCount }}</td>
- <td>{{ data.totalGrade }}</td>
- <td>{{ data.totalPrice }}</td>
- <td>{{ data.response_time_num }}</td>
- <td>{{ data.arrive_time_num }}</td>
- <td>{{ data.execution_time_num }}</td>
- <td>{{ data.aveper }}</td>
- <td>{{ data.total_time }}</td>
- <td>{{ data.five_count }}</td>
- <td>{{ data.special_close }}</td>
- </tr>
- </tbody>
- <ng-template #footerTpl>
- <table class="footTable">
- <tr *ngFor="let data of listOfDataEnd">
- <td style="width: 10%">{{ data.date }}</td>
- <td style="width: 9%">{{ data.totalCount }}</td>
- <td style="width: 9%">{{ data.totalGrade }}</td>
- <td style="width: 9%">{{ data.totalPrice }}</td>
- <td style="width: 9%">{{ data.response_time_num }}</td>
- <td style="width: 9%">{{ data.arrive_time_num }}</td>
- <td style="width: 9%">{{ data.execution_time_num }}</td>
- <td style="width: 9%">{{ data.aveper }}</td>
- <td style="width: 9%">{{ data.total_time }}</td>
- <td style="width: 9%">{{ data.five_count }}</td>
- <td style="width: 9%">{{ data.special_close }}</td>
- </tr>
- </table>
- </ng-template>
- </nz-table>
- <div class="pagination">
- <ng-template #totalTemplate let-total> 共 {{ total }} 条 </ng-template>
- <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>
- </div>
- <!-- 详细搜索 -->
- <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>
|