|
@@ -35,27 +35,27 @@
|
35
|
35
|
<span>{{fieldConfig.fields.deptTypeDTO?.name}}</span>
|
36
|
36
|
</div>
|
37
|
37
|
<div class="tableWrap">
|
38
|
|
- <nz-table class="table" [ngStyle]="{ width: widthValue + 'px' }" accesskey=""[nzData]="listOfData" nzSize="middle" [nzShowPagination]="false" [nzLoading]="loading1" [nzScroll]="{ y: tableHeight + 'px' }" [nzWidthConfig]="widthConfig" [nzFooter]="footerTpl">
|
|
38
|
+ <nz-table class="table" accesskey=""[nzData]="listOfData" nzSize="middle" [nzShowPagination]="false" [nzLoading]="loading1" [nzScroll]="{ y: tableHeight + 'px' }" [nzFooter]="footerTpl">
|
39
|
39
|
<thead (nzSortChange)="sort($event)" nzSingleSort>
|
40
|
40
|
<tr>
|
41
|
|
- <th rowspan="2" *ngIf="parent==1">父级科室(编码)</th>
|
42
|
|
- <th rowspan="2">科室名称(编码)</th>
|
43
|
|
- <th rowspan="2" nzShowSort nzSortKey="sum" [(nzSort)]="sortCurrent.sum">工单总数</th>
|
44
|
|
- <th rowspan="2" nzShowSort nzSortKey="avgResponseTime" [(nzSort)]="sortCurrent.avgResponseTime">平均接单时长</th>
|
45
|
|
- <th rowspan="2" nzShowSort nzSortKey="avgResolvedTime" [(nzSort)]="sortCurrent.avgResolvedTime">平均解决时长</th>
|
46
|
|
- <th rowspan="2" nzShowSort nzSortKey="resolvedOverNum" [(nzSort)]="sortCurrent.resolvedOverNum">超时单数</th>
|
47
|
|
- <th rowspan="2" nzShowSort nzSortKey="overTimeNum" [(nzSort)]="sortCurrent.overTimeNum">挂起单数</th>
|
48
|
|
- <th rowspan="2" nzShowSort nzSortKey="consumablePrice" [(nzSort)]="sortCurrent.consumablePrice">耗材费用(元)</th>
|
49
|
|
- <th rowspan="2" nzShowSort nzSortKey="workHourPrice" [(nzSort)]="sortCurrent.workHourPrice">工时费用(元)</th>
|
50
|
|
- <th rowspan="2" nzShowSort nzSortKey="totalPrice" [(nzSort)]="sortCurrent.totalPrice">总费用(元)</th>
|
51
|
|
- <th rowspan="2" nzShowSort nzSortKey="negativeNum" [(nzSort)]="sortCurrent.negativeNum">差评单数</th>
|
52
|
|
- <th rowspan="2" nzShowSort nzSortKey="favorableRate" [(nzSort)]="sortCurrent.favorableRate">好评率</th>
|
|
41
|
+ <th [nzWidth]="widthStyle" *ngIf="parent==1">父级科室(编码)</th>
|
|
42
|
+ <th [nzWidth]="widthStyle">科室名称(编码)</th>
|
|
43
|
+ <th [nzWidth]="widthStyle" nzShowSort nzSortKey="sum" [(nzSort)]="sortCurrent.sum">工单总数</th>
|
|
44
|
+ <th [nzWidth]="widthStyle" nzShowSort nzSortKey="avgResponseTime" [(nzSort)]="sortCurrent.avgResponseTime">平均接单时长</th>
|
|
45
|
+ <th [nzWidth]="widthStyle" nzShowSort nzSortKey="avgResolvedTime" [(nzSort)]="sortCurrent.avgResolvedTime">平均解决时长</th>
|
|
46
|
+ <th [nzWidth]="widthStyle" nzShowSort nzSortKey="resolvedOverNum" [(nzSort)]="sortCurrent.resolvedOverNum">超时单数</th>
|
|
47
|
+ <th [nzWidth]="widthStyle" nzShowSort nzSortKey="overTimeNum" [(nzSort)]="sortCurrent.overTimeNum">挂起单数</th>
|
|
48
|
+ <th [nzWidth]="widthStyle" nzShowSort nzSortKey="consumablePrice" [(nzSort)]="sortCurrent.consumablePrice">耗材费用(元)</th>
|
|
49
|
+ <th [nzWidth]="widthStyle" nzShowSort nzSortKey="workHourPrice" [(nzSort)]="sortCurrent.workHourPrice">工时费用(元)</th>
|
|
50
|
+ <th [nzWidth]="widthStyle" nzShowSort nzSortKey="totalPrice" [(nzSort)]="sortCurrent.totalPrice">总费用(元)</th>
|
|
51
|
+ <th [nzWidth]="widthStyle" nzShowSort nzSortKey="negativeNum" [(nzSort)]="sortCurrent.negativeNum">差评单数</th>
|
|
52
|
+ <th [nzWidth]="widthStyle" nzShowSort nzSortKey="favorableRate" [(nzSort)]="sortCurrent.favorableRate">好评率</th>
|
53
|
53
|
</tr>
|
54
|
54
|
</thead>
|
55
|
55
|
<tbody>
|
56
|
56
|
<tr *ngFor="let data of listOfData">
|
57
|
|
- <td class="width150" *ngIf="parent==1">{{ data.parentName || '无' }}<ng-container *ngIf="parent==1 && data.parentName">({{ data.parentCode }})</ng-container></td>
|
58
|
|
- <td class="width150">{{ data.deptName }}<ng-container *ngIf="data.deptCode">({{ data.deptCode }})</ng-container></td>
|
|
57
|
+ <td *ngIf="parent==1">{{ data.parentName || '无' }}<ng-container *ngIf="parent==1 && data.parentName">({{ data.parentCode }})</ng-container></td>
|
|
58
|
+ <td>{{ data.deptName }}<ng-container *ngIf="data.deptCode">({{ data.deptCode }})</ng-container></td>
|
59
|
59
|
<td>{{ data.sum }}</td>
|
60
|
60
|
<td>{{ data.avgResponseTime }}</td>
|
61
|
61
|
<td>{{ data.avgResolvedTime }}</td>
|
|
@@ -71,19 +71,19 @@
|
71
|
71
|
<ng-template #footerTpl>
|
72
|
72
|
<table class="footTable">
|
73
|
73
|
<tr *ngFor="let data of listOfDataEnd">
|
74
|
|
- <td class="width150" *ngIf="parent==1">{{ data.parentCode }}</td>
|
75
|
|
- <td class="width150" *ngIf="parent==0">{{ data.deptCode}}</td>
|
76
|
|
- <td class="width150" *ngIf="parent==1"></td>
|
77
|
|
- <td>{{ data.sum }}</td>
|
78
|
|
- <td>{{ data.avgResponseTime }}</td>
|
79
|
|
- <td>{{ data.avgResolvedTime }}</td>
|
80
|
|
- <td>{{ data.resolvedOverNum }}</td>
|
81
|
|
- <td>{{ data.overTimeNum }}</td>
|
82
|
|
- <td>{{ data.consumablePrice }}</td>
|
83
|
|
- <td>{{ data.workHourPrice }}</td>
|
84
|
|
- <td>{{ data.totalPrice }}</td>
|
85
|
|
- <td>{{ data.negativeNum }}</td>
|
86
|
|
- <td>{{ data.favorableRate }}</td>
|
|
74
|
+ <td [ngStyle]="{width:widthStyle}" *ngIf="parent==1">{{ data.parentCode }}</td>
|
|
75
|
+ <td [ngStyle]="{width:widthStyle}" *ngIf="parent==0">{{ data.deptCode}}</td>
|
|
76
|
+ <td [ngStyle]="{width:widthStyle}" *ngIf="parent==1"></td>
|
|
77
|
+ <td [ngStyle]="{width:widthStyle}">{{ data.sum }}</td>
|
|
78
|
+ <td [ngStyle]="{width:widthStyle}">{{ data.avgResponseTime }}</td>
|
|
79
|
+ <td [ngStyle]="{width:widthStyle}">{{ data.avgResolvedTime }}</td>
|
|
80
|
+ <td [ngStyle]="{width:widthStyle}">{{ data.resolvedOverNum }}</td>
|
|
81
|
+ <td [ngStyle]="{width:widthStyle}">{{ data.overTimeNum }}</td>
|
|
82
|
+ <td [ngStyle]="{width:widthStyle}">{{ data.consumablePrice }}</td>
|
|
83
|
+ <td [ngStyle]="{width:widthStyle}">{{ data.workHourPrice }}</td>
|
|
84
|
+ <td [ngStyle]="{width:widthStyle}">{{ data.totalPrice }}</td>
|
|
85
|
+ <td [ngStyle]="{width:widthStyle}">{{ data.negativeNum }}</td>
|
|
86
|
+ <td [ngStyle]="{width:widthStyle}">{{ data.favorableRate }}</td>
|
87
|
87
|
</tr>
|
88
|
88
|
</table>
|
89
|
89
|
</ng-template>
|