|
@@ -15,35 +15,35 @@
|
15
|
15
|
<nz-table [nzData]="listOfData" nzSize="middle" [nzShowPagination]="false" [nzLoading]="loading1">
|
16
|
16
|
<thead (nzSortChange)="sort($event)" nzSingleSort>
|
17
|
17
|
<tr>
|
18
|
|
- <th nzWidth="10%">时间</th>
|
19
|
|
- <th nzWidth="9%">工单总数</th>
|
20
|
|
- <th nzWidth="9%" nzShowSort nzSortKey="byOrderNum" [(nzSort)]="sortCurrent.byOrderNum">平均响应时间</th>
|
21
|
|
- <th nzWidth="9%">平均解决时间</th>
|
22
|
|
- <th nzWidth="9%">超时单数</th>
|
23
|
|
- <th nzWidth="9%" nzShowSort nzSortKey="completionRate" [(nzSort)]="sortCurrent.completionRate">挂起单数</th>
|
24
|
|
- <th nzWidth="9%">耗材费用(元)</th>
|
25
|
|
- <th nzWidth="9%">工时费用(元)</th>
|
26
|
|
- <th nzWidth="9%">总费用(元)</th>
|
27
|
|
- <th nzWidth="9%" nzShowSort nzSortKey="byIntegral" [(nzSort)]="sortCurrent.byIntegral">差评单数</th>
|
28
|
|
- <th nzWidth="9%">好评率</th>
|
|
18
|
+ <th nzWidth="10%" nzShowSort nzSortKey="startDate" [(nzSort)]="sortCurrent.startDate">时间</th>
|
|
19
|
+ <th nzWidth="9%" nzShowSort nzSortKey="sum" [(nzSort)]="sortCurrent.sum">工单总数</th>
|
|
20
|
+ <th nzWidth="9%" nzShowSort nzSortKey="avgResponseTime" [(nzSort)]="sortCurrent.avgResponseTime">平均响应时间</th>
|
|
21
|
+ <th nzWidth="9%" nzShowSort nzSortKey="avgResolvedTime" [(nzSort)]="sortCurrent.avgResolvedTime">平均解决时间</th>
|
|
22
|
+ <th nzWidth="9%" nzShowSort nzSortKey="resolvedOverNum" [(nzSort)]="sortCurrent.resolvedOverNum">超时单数</th>
|
|
23
|
+ <th nzWidth="9%" nzShowSort nzSortKey="overTimeNum" [(nzSort)]="sortCurrent.overTimeNum">挂起单数</th>
|
|
24
|
+ <th nzWidth="9%" nzShowSort nzSortKey="consumablePrice" [(nzSort)]="sortCurrent.consumablePrice">耗材费用(元)</th>
|
|
25
|
+ <th nzWidth="9%" nzShowSort nzSortKey="workHourPrice" [(nzSort)]="sortCurrent.workHourPrice">工时费用(元)</th>
|
|
26
|
+ <th nzWidth="9%" nzShowSort nzSortKey="totalPrice" [(nzSort)]="sortCurrent.totalPrice">总费用(元)</th>
|
|
27
|
+ <th nzWidth="9%" nzShowSort nzSortKey="negativeNum" [(nzSort)]="sortCurrent.negativeNum">差评单数</th>
|
|
28
|
+ <th nzWidth="9%" nzShowSort nzSortKey="favorableRate" [(nzSort)]="sortCurrent.favorableRate">好评率</th>
|
29
|
29
|
</tr>
|
30
|
30
|
</thead>
|
31
|
31
|
<tbody>
|
32
|
32
|
<tr *ngFor="let data of listOfData; let index = index">
|
33
|
|
- <td>{{ index + (pageIndex - 1) * 10 + 1 }}</td>
|
34
|
|
- <td>{{ data.name }}</td>
|
35
|
|
- <td>{{ data.total || 0 }}</td>
|
36
|
|
- <td>{{ data.total || 0 }}</td>
|
37
|
|
- <td>{{ data.total || 0 }}</td>
|
38
|
|
- <td>{{ data.fiveTimeNum || 0 }}<br>{{ data.specialCloseNum }}</td>
|
39
|
|
- <td>{{ data.arriveTime }}<br>{{ data.completeTime }}</td>
|
40
|
|
- <td>{{ data.avePer + "%" }}</td>
|
41
|
|
- <td>{{ data.buildingGrade }}<br>{{ data.inspectModeGrade }}</td>
|
42
|
|
- <td>{{ data.order || 0 }}</td>
|
43
|
|
- <td>{{ data.order || 0 }}</td>
|
|
33
|
+ <td>{{ data.startDate }}</td>
|
|
34
|
+ <td>{{ data.sum }}</td>
|
|
35
|
+ <td>{{ data.avgResponseTime }}</td>
|
|
36
|
+ <td>{{ data.avgResolvedTime }}</td>
|
|
37
|
+ <td>{{ data.resolvedOverNum }}</td>
|
|
38
|
+ <td>{{ data.overTimeNum }}</td>
|
|
39
|
+ <td>{{ data.consumablePrice }}</td>
|
|
40
|
+ <td>{{ data.workHourPrice }}</td>
|
|
41
|
+ <td>{{ data.totalPrice }}</td>
|
|
42
|
+ <td>{{ data.negativeNum }}</td>
|
|
43
|
+ <td>{{ data.favorableRate }}</td>
|
44
|
44
|
</tr>
|
45
|
45
|
</tbody>
|
46
|
46
|
</nz-table>
|
47
|
47
|
<div>
|
48
|
48
|
<nz-pagination [(nzPageIndex)]="pageIndex" [(nzTotal)]="listLength" nzShowSizeChanger [(nzPageSize)]="pageSize" (nzPageIndexChange)="getList(pageIndex, sortCurrentKey, sortCurrentValue)" (nzPageSizeChange)="getList(pageIndex, sortCurrentKey, sortCurrentValue)"></nz-pagination>
|
49
|
|
-</div>
|
|
49
|
+</div>
|