|
@@ -31,17 +31,18 @@
|
31
|
31
|
<nz-table class="table" [nzData]="listOfData" nzSize="middle" [nzShowPagination]="false" [nzLoading]="loading1" [nzScroll]="{ y: tableHeight + 'px' }" [nzFooter]="footerTpl">
|
32
|
32
|
<thead (nzSortChange)="sort($event)" nzSingleSort>
|
33
|
33
|
<tr>
|
34
|
|
- <th [nzWidth]="widthStyle" *ngIf="parent==1" nzShowSort nzSortKey="parentOrders" [(nzSort)]="sortCurrent.parentOrders">父级科室(编码)</th>
|
35
|
|
- <th [nzWidth]="widthStyle" nzShowSort nzSortKey="orders" [(nzSort)]="sortCurrent.orders">科室(编码)</th>
|
36
|
|
- <th [nzWidth]="widthStyle" nzShowSort nzSortKey="totalCount" [(nzSort)]="sortCurrent.totalCount">工单数量</th>
|
37
|
|
- <th [nzWidth]="widthStyle" nzShowSort nzSortKey="totalGrade" [(nzSort)]="sortCurrent.totalGrade">总积分</th>
|
38
|
|
- <th [nzWidth]="widthStyle" nzShowSort nzSortKey="totalPrice" [(nzSort)]="sortCurrent.totalPrice">总费用</th>
|
39
|
|
- <th [nzWidth]="widthStyle" nzShowSort nzSortKey="response_time_num" [(nzSort)]="sortCurrent.response_time_num">平均响应时间</th>
|
40
|
|
- <th [nzWidth]="widthStyle" nzShowSort nzSortKey="execution_time_num" [(nzSort)]="sortCurrent.execution_time_num">平均送达时间</th>
|
41
|
|
- <th [nzWidth]="widthStyle" nzShowSort nzSortKey="aveper" [(nzSort)]="sortCurrent.aveper">按时完成达标率</th>
|
42
|
|
- <th [nzWidth]="widthStyle" nzShowSort nzSortKey="total_time" [(nzSort)]="sortCurrent.total_time">平均总时间</th>
|
43
|
|
- <th [nzWidth]="widthStyle" nzShowSort nzSortKey="five_count" [(nzSort)]="sortCurrent.five_count">五分钟内工单</th>
|
44
|
|
- <th [nzWidth]="widthStyle" nzShowSort nzSortKey="special_close" [(nzSort)]="sortCurrent.special_close">特殊关闭数</th>
|
|
34
|
+ <th nzWidth="12%" *ngIf="parent==1" nzShowSort nzSortKey="parentOrders" [(nzSort)]="sortCurrent.parentOrders">父级科室(编码)</th>
|
|
35
|
+ <th [nzWidth]="parent==1 ? '8%' : '10%'" nzShowSort nzSortKey="orders" [(nzSort)]="sortCurrent.orders">科室(编码)</th>
|
|
36
|
+ <th [nzWidth]="parent==1 ? '8%' : '9%'" nzShowSort nzSortKey="totalCount" [(nzSort)]="sortCurrent.totalCount">工单数量</th>
|
|
37
|
+ <th [nzWidth]="parent==1 ? '8%' : '9%'" nzShowSort nzSortKey="totalGrade" [(nzSort)]="sortCurrent.totalGrade">总积分</th>
|
|
38
|
+ <th [nzWidth]="parent==1 ? '8%' : '9%'" nzShowSort nzSortKey="totalPrice" [(nzSort)]="sortCurrent.totalPrice">总费用</th>
|
|
39
|
+ <th [nzWidth]="parent==1 ? '8%' : '9%'" nzShowSort nzSortKey="response_time_num" [(nzSort)]="sortCurrent.response_time_num">平均响应时间</th>
|
|
40
|
+ <th [nzWidth]="parent==1 ? '8%' : '9%'" nzShowSort nzSortKey="arrive_time_num" [(nzSort)]="sortCurrent.arrive_time_num">平均到达时间</th>
|
|
41
|
+ <th [nzWidth]="parent==1 ? '8%' : '9%'" nzShowSort nzSortKey="execution_time_num" [(nzSort)]="sortCurrent.execution_time_num">平均送达时间</th>
|
|
42
|
+ <th [nzWidth]="parent==1 ? '8%' : '9%'" nzShowSort nzSortKey="aveper" [(nzSort)]="sortCurrent.aveper">按时完成达标率</th>
|
|
43
|
+ <th [nzWidth]="parent==1 ? '8%' : '9%'" nzShowSort nzSortKey="total_time" [(nzSort)]="sortCurrent.total_time">平均总时间</th>
|
|
44
|
+ <th [nzWidth]="parent==1 ? '8%' : '9%'" nzShowSort nzSortKey="five_count" [(nzSort)]="sortCurrent.five_count">五分钟内工单</th>
|
|
45
|
+ <th [nzWidth]="parent==1 ? '8%' : '9%'" nzShowSort nzSortKey="special_close" [(nzSort)]="sortCurrent.special_close">特殊关闭数</th>
|
45
|
46
|
</tr>
|
46
|
47
|
</thead>
|
47
|
48
|
<tbody>
|
|
@@ -52,6 +53,7 @@
|
52
|
53
|
<td>{{ data.totalGrade }}</td>
|
53
|
54
|
<td>{{ data.totalPrice }}</td>
|
54
|
55
|
<td>{{ data.response_time_num }}</td>
|
|
56
|
+ <td>{{ data.arrive_time_num }}</td>
|
55
|
57
|
<td>{{ data.execution_time_num }}</td>
|
56
|
58
|
<td>{{ data.aveper }}</td>
|
57
|
59
|
<td>{{ data.total_time }}</td>
|
|
@@ -62,18 +64,19 @@
|
62
|
64
|
<ng-template #footerTpl>
|
63
|
65
|
<table class="footTable">
|
64
|
66
|
<tr *ngFor="let data of listOfDataEnd">
|
65
|
|
- <td [ngStyle]="{width:widthStyle}" *ngIf="parent==1">{{ data.parentName }}</td>
|
66
|
|
- <td [ngStyle]="{width:widthStyle}" *ngIf="parent==0">{{ data.name }}</td>
|
67
|
|
- <td [ngStyle]="{width:widthStyle}" *ngIf="parent==1"></td>
|
68
|
|
- <td [ngStyle]="{width:widthStyle}">{{ data.totalCount }}</td>
|
69
|
|
- <td [ngStyle]="{width:widthStyle}">{{ data.totalGrade }}</td>
|
70
|
|
- <td [ngStyle]="{width:widthStyle}">{{ data.totalPrice }}</td>
|
71
|
|
- <td [ngStyle]="{width:widthStyle}">{{ data.response_time_num }}</td>
|
72
|
|
- <td [ngStyle]="{width:widthStyle}">{{ data.execution_time_num }}</td>
|
73
|
|
- <td [ngStyle]="{width:widthStyle}">{{ data.aveper }}</td>
|
74
|
|
- <td [ngStyle]="{width:widthStyle}">{{ data.total_time }}</td>
|
75
|
|
- <td [ngStyle]="{width:widthStyle}">{{ data.five_count }}</td>
|
76
|
|
- <td [ngStyle]="{width:widthStyle}">{{ data.special_close }}</td>
|
|
67
|
+ <td style="width: 12%" *ngIf="parent==1">{{ data.parentName }}</td>
|
|
68
|
+ <td style="width: 10%" *ngIf="parent==0">{{ data.name }}</td>
|
|
69
|
+ <td style="width: 8%" *ngIf="parent==1"></td>
|
|
70
|
+ <td [ngStyle]="{width: parent==1 ? '8%' : '9%'}">{{ data.totalCount }}</td>
|
|
71
|
+ <td [ngStyle]="{width: parent==1 ? '8%' : '9%'}">{{ data.totalGrade }}</td>
|
|
72
|
+ <td [ngStyle]="{width: parent==1 ? '8%' : '9%'}">{{ data.totalPrice }}</td>
|
|
73
|
+ <td [ngStyle]="{width: parent==1 ? '8%' : '9%'}">{{ data.response_time_num }}</td>
|
|
74
|
+ <td [ngStyle]="{width: parent==1 ? '8%' : '9%'}">{{ data.arrive_time_num }}</td>
|
|
75
|
+ <td [ngStyle]="{width: parent==1 ? '8%' : '9%'}">{{ data.execution_time_num }}</td>
|
|
76
|
+ <td [ngStyle]="{width: parent==1 ? '8%' : '9%'}">{{ data.aveper }}</td>
|
|
77
|
+ <td [ngStyle]="{width: parent==1 ? '8%' : '9%'}">{{ data.total_time }}</td>
|
|
78
|
+ <td [ngStyle]="{width: parent==1 ? '8%' : '9%'}">{{ data.five_count }}</td>
|
|
79
|
+ <td [ngStyle]="{width: parent==1 ? '8%' : '9%'}">{{ data.special_close }}</td>
|
77
|
80
|
</tr>
|
78
|
81
|
</table>
|
79
|
82
|
</ng-template>
|