Quellcode durchsuchen

统计默认排序

seimin vor 5 Tagen
Ursprung
Commit
c57c9b37d2

+ 21 - 18
src/app/views/new-statistics/distribution-inspection-statistics/date-quality-control-statistics/date-quality-control-statistics.component.html

@@ -31,15 +31,16 @@
31 31
   <thead (nzSortChange)="sort($event)" nzSingleSort>
32 32
     <tr>
33 33
       <th nzWidth="10%" nzShowSort nzSortKey="date" [(nzSort)]="sortCurrent.date">日期</th>
34
-      <th nzWidth="10%" nzShowSort nzSortKey="totalCount" [(nzSort)]="sortCurrent.totalCount">工单数量</th>
35
-      <th nzWidth="10%" nzShowSort nzSortKey="totalGrade" [(nzSort)]="sortCurrent.totalGrade">总积分</th>
36
-			<th nzWidth="10%" nzShowSort nzSortKey="totalPrice" [(nzSort)]="sortCurrent.totalPrice">总费用</th>
37
-      <th nzWidth="10%" nzShowSort nzSortKey="response_time_num" [(nzSort)]="sortCurrent.response_time_num">平均响应时间</th>
38
-      <th nzWidth="10%" nzShowSort nzSortKey="execution_time_num" [(nzSort)]="sortCurrent.execution_time_num">平均送达时间</th>
39
-      <th nzWidth="10%" nzShowSort nzSortKey="aveper" [(nzSort)]="sortCurrent.aveper">按时完成达标率</th>
40
-      <th nzWidth="10%" nzShowSort nzSortKey="total_time" [(nzSort)]="sortCurrent.total_time">平均总时间</th>
41
-      <th nzWidth="10%" nzShowSort nzSortKey="five_count" [(nzSort)]="sortCurrent.five_count">五分钟内工单</th>
42
-      <th nzWidth="10%" nzShowSort nzSortKey="special_close" [(nzSort)]="sortCurrent.special_close">特殊关闭数</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>
43 44
     </tr>
44 45
   </thead>
45 46
   <tbody>
@@ -49,6 +50,7 @@
49 50
       <td>{{ data.totalGrade }}</td>
50 51
 			<td>{{ data.totalPrice }}</td>
51 52
       <td>{{ data.response_time_num }}</td>
53
+      <td>{{ data.arrive_time_num }}</td>
52 54
       <td>{{ data.execution_time_num }}</td>
53 55
       <td>{{ data.aveper }}</td>
54 56
       <td>{{ data.total_time }}</td>
@@ -60,15 +62,16 @@
60 62
     <table class="footTable">
61 63
       <tr *ngFor="let data of listOfDataEnd">
62 64
         <td style="width: 10%">{{ data.date }}</td>
63
-        <td style="width: 10%">{{ data.totalCount }}</td>
64
-        <td style="width: 10%">{{ data.totalGrade }}</td>
65
-				<td style="width: 10%">{{ data.totalPrice }}</td>
66
-        <td style="width: 10%">{{ data.response_time_num }}</td>
67
-        <td style="width: 10%">{{ data.execution_time_num }}</td>
68
-        <td style="width: 10%">{{ data.aveper }}</td>
69
-        <td style="width: 10%">{{ data.total_time }}</td>
70
-        <td style="width: 10%">{{ data.five_count }}</td>
71
-        <td style="width: 10%">{{ data.special_close }}</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>
72 75
       </tr>
73 76
     </table>
74 77
   </ng-template>

+ 6 - 6
src/app/views/new-statistics/distribution-inspection-statistics/department-business-statistics/department-business-statistics.component.ts

@@ -166,9 +166,9 @@ export class DepartmentBusinessStatisticsComponent implements OnInit, AfterViewI
166 166
   }
167 167
 
168 168
   // 列表排序
169
-  sortCurrent:any = {};
170
-  sortCurrentKey: string = "";
171
-  sortCurrentValue: string | null = "";
169
+  sortCurrent:any = {totalCount: 'descend'};
170
+  sortCurrentKey: string = "totalCount";
171
+  sortCurrentValue: string | null = "descend";
172 172
   sort(e) {
173 173
     const { key, value } = e;
174 174
     this.sortCurrentKey = key;
@@ -228,9 +228,9 @@ export class DepartmentBusinessStatisticsComponent implements OnInit, AfterViewI
228 228
   }
229 229
   // 重置
230 230
   reset(){
231
-    this.sortCurrentKey = "";
232
-		this.sortCurrentValue = "";
233
-		this.sortCurrent = {};
231
+    this.sortCurrentKey = "totalCount";
232
+		this.sortCurrentValue = "descend";
233
+		this.sortCurrent = {totalCount: 'descend'};
234 234
     this.dateRange = []
235 235
     this.deptId = undefined;
236 236
     this.fieldConfig.fields = {groupId: undefined, userId: undefined, buildingId: undefined};

+ 26 - 23
src/app/views/new-statistics/distribution-inspection-statistics/department-quality-control-statistics/department-quality-control-statistics.component.html

@@ -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>

+ 6 - 18
src/app/views/new-statistics/distribution-inspection-statistics/department-quality-control-statistics/department-quality-control-statistics.component.ts

@@ -117,9 +117,6 @@ export class DepartmentQualityControlStatisticsComponent implements OnInit, Afte
117 117
 
118 118
   // 表格数据
119 119
   loading1 = false;
120
-	widthValue:any;
121
-	widthConfig:any = [];
122
-	widthStyle:any;
123 120
   getList(num?: number, field?: string, sort?: string) {
124 121
     if (num !== undefined) {
125 122
       this.pageIndex = num;
@@ -141,15 +138,6 @@ export class DepartmentQualityControlStatisticsComponent implements OnInit, Afte
141 138
     if (field && sort) {
142 139
       postData.sort = `${field} ${sort === "ascend" ? `asc` : `desc`}`
143 140
     }
144
-		if(this.parent==1){
145
-			this.widthConfig = new Array(11).fill('100px').map((v, i) => { return (i == 0 || i == 1 && this.parent==1) || (i == 0 && this.parent==0) ? '150px' : '100px' });;
146
-			this.widthValue = 11 * 100 + 300 * 1 + 20
147
-			this.widthStyle = '9%'
148
-		}else{
149
-			this.widthConfig = new Array(10).fill('100px').map((v, i) => { return (i == 0 || i == 1 && this.parent==1) || (i == 0 && this.parent==0) ? '150px' : '100px' });;
150
-			this.widthValue = 10 * 100 + 162 * 1 + 20
151
-			this.widthStyle = '10%'
152
-		}
153 141
     this.loading1 = true;
154 142
     this.mainService
155 143
       .postCustom("itsm/report", "deptTransOrderQc", postData)
@@ -162,9 +150,9 @@ export class DepartmentQualityControlStatisticsComponent implements OnInit, Afte
162 150
   }
163 151
 
164 152
   // 列表排序
165
-  sortCurrent:any = {};
166
-  sortCurrentKey: string = "";
167
-  sortCurrentValue: string | null = "";
153
+  sortCurrent:any = {totalCount: 'descend'};
154
+  sortCurrentKey: string = "totalCount";
155
+  sortCurrentValue: string | null = "descend";
168 156
   sort(e) {
169 157
     const { key, value } = e;
170 158
     this.sortCurrentKey = key;
@@ -226,9 +214,9 @@ export class DepartmentQualityControlStatisticsComponent implements OnInit, Afte
226 214
   }
227 215
   // 重置
228 216
   reset(){
229
-    this.sortCurrentKey = "";
230
-		this.sortCurrentValue = "";
231
-		this.sortCurrent = {};
217
+    this.sortCurrentKey = "totalCount";
218
+		this.sortCurrentValue = "descend";
219
+		this.sortCurrent = {totalCount: 'descend'};
232 220
     this.dateRange = []
233 221
     this.deptId = undefined;
234 222
     this.fieldConfig.fields = {groupId: undefined, userId: undefined, statisticsTypeId: undefined, taskTypeId: undefined, buildingId: undefined};

+ 6 - 6
src/app/views/new-statistics/distribution-inspection-statistics/distribution-department-evaluate-statistics/distribution-department-evaluate-statistics.component.ts

@@ -157,9 +157,9 @@ export class DistributionDepartmentEvaluateStatisticsComponent implements OnInit
157 157
   }
158 158
 
159 159
   // 列表排序
160
-  sortCurrent:any = {};
161
-  sortCurrentKey: string = "";
162
-  sortCurrentValue: string | null = "";
160
+  sortCurrent:any = {totalCount: 'descend'};
161
+  sortCurrentKey: string = "totalCount";
162
+  sortCurrentValue: string | null = "descend";
163 163
   sort(e) {
164 164
     const { key, value } = e;
165 165
     this.sortCurrentKey = key;
@@ -221,9 +221,9 @@ export class DistributionDepartmentEvaluateStatisticsComponent implements OnInit
221 221
   }
222 222
   // 重置
223 223
   reset(){
224
-    this.sortCurrentKey = "";
225
-		this.sortCurrentValue = "";
226
-		this.sortCurrent = {};
224
+    this.sortCurrentKey = "totalCount";
225
+		this.sortCurrentValue = "descend";
226
+		this.sortCurrent = {totalCount: 'descend'};
227 227
     this.dateRange = []
228 228
     this.buildingId = undefined;
229 229
     this.fieldConfig.fields = {groupId: undefined, userId: undefined, statisticsTypeId: undefined, taskTypeId: undefined, buildingId: undefined};

+ 6 - 6
src/app/views/new-statistics/distribution-inspection-statistics/distribution-user-evaluate-statistics/distribution-user-evaluate-statistics.component.ts

@@ -144,9 +144,9 @@ export class DistributionUserEvaluateStatisticsComponent implements OnInit, Afte
144 144
   }
145 145
 
146 146
   // 列表排序
147
-  sortCurrent:any = {};
148
-  sortCurrentKey: string = "";
149
-  sortCurrentValue: string | null = "";
147
+  sortCurrent:any = {totalCount: 'descend'};
148
+  sortCurrentKey: string = "totalCount";
149
+  sortCurrentValue: string | null = "descend";
150 150
   sort(e) {
151 151
     const { key, value } = e;
152 152
     this.sortCurrentKey = key;
@@ -207,9 +207,9 @@ export class DistributionUserEvaluateStatisticsComponent implements OnInit, Afte
207 207
   }
208 208
   // 重置
209 209
   reset(){
210
-    this.sortCurrentKey = "";
211
-		this.sortCurrentValue = "";
212
-		this.sortCurrent = {};
210
+    this.sortCurrentKey = "totalCount";
211
+		this.sortCurrentValue = "descend";
212
+		this.sortCurrent = {totalCount: 'descend'};
213 213
     this.dateRange = []
214 214
     this.userId = undefined;
215 215
     this.fieldConfig.fields = {groupId: undefined, deptId: undefined, buildingId: undefined, taskTypeId: undefined, statisticsTypeId: undefined};

+ 6 - 6
src/app/views/new-statistics/distribution-inspection-statistics/user-business-statistics/user-business-statistics.component.ts

@@ -151,9 +151,9 @@ export class UserBusinessStatisticsComponent implements OnInit, AfterViewInit {
151 151
   }
152 152
 
153 153
   // 列表排序
154
-  sortCurrent:any = {};
155
-  sortCurrentKey: string = "";
156
-  sortCurrentValue: string | null = "";
154
+  sortCurrent:any = {totalCount: 'descend'};
155
+  sortCurrentKey: string = "totalCount";
156
+  sortCurrentValue: string | null = "descend";
157 157
   sort(e) {
158 158
     const { key, value } = e;
159 159
     this.sortCurrentKey = key;
@@ -212,9 +212,9 @@ export class UserBusinessStatisticsComponent implements OnInit, AfterViewInit {
212 212
   }
213 213
   // 重置
214 214
   reset(){
215
-    this.sortCurrentKey = "";
216
-		this.sortCurrentValue = "";
217
-		this.sortCurrent = {};
215
+    this.sortCurrentKey = "totalCount";
216
+		this.sortCurrentValue = "descend";
217
+		this.sortCurrent = {totalCount: 'descend'};
218 218
     this.dateRange = []
219 219
     this.userId = undefined;
220 220
     this.fieldConfig.fields = {buildingId: undefined, deptId: undefined, groupId: undefined};

+ 21 - 18
src/app/views/new-statistics/distribution-inspection-statistics/user-quality-control-statistics/user-quality-control-statistics.component.html

@@ -29,15 +29,16 @@
29 29
   <thead (nzSortChange)="sort($event)" nzSingleSort>
30 30
     <tr>
31 31
       <th nzWidth="10%">人员(编码)</th>
32
-      <th nzWidth="10%" nzShowSort nzSortKey="totalCount" [(nzSort)]="sortCurrent.totalCount">工单数量</th>
33
-      <th nzWidth="10%" nzShowSort nzSortKey="totalGrade" [(nzSort)]="sortCurrent.totalGrade">总积分</th>
34
-      <th nzWidth="10%" nzShowSort nzSortKey="totalPrice" [(nzSort)]="sortCurrent.totalPrice">总费用</th>
35
-			<th nzWidth="10%" nzShowSort nzSortKey="response_time_num" [(nzSort)]="sortCurrent.response_time_num">平均响应时间</th>
36
-      <th nzWidth="10%" nzShowSort nzSortKey="execution_time_num" [(nzSort)]="sortCurrent.execution_time_num">平均送达时间</th>
37
-      <th nzWidth="10%" nzShowSort nzSortKey="aveper" [(nzSort)]="sortCurrent.aveper">按时完成达标率</th>
38
-      <th nzWidth="10%" nzShowSort nzSortKey="total_time" [(nzSort)]="sortCurrent.total_time">平均总时间</th>
39
-      <th nzWidth="10%" nzShowSort nzSortKey="five_count" [(nzSort)]="sortCurrent.five_count">五分钟内工单</th>
40
-      <th nzWidth="10%" nzShowSort nzSortKey="special_close" [(nzSort)]="sortCurrent.special_close">特殊关闭数</th>
32
+      <th nzWidth="9%" nzShowSort nzSortKey="totalCount" [(nzSort)]="sortCurrent.totalCount">工单数量</th>
33
+      <th nzWidth="9%" nzShowSort nzSortKey="totalGrade" [(nzSort)]="sortCurrent.totalGrade">总积分</th>
34
+      <th nzWidth="9%" nzShowSort nzSortKey="totalPrice" [(nzSort)]="sortCurrent.totalPrice">总费用</th>
35
+			<th nzWidth="9%" nzShowSort nzSortKey="response_time_num" [(nzSort)]="sortCurrent.response_time_num">平均响应时间</th>
36
+      <th nzWidth="9%" nzShowSort nzSortKey="arrive_time_num" [(nzSort)]="sortCurrent.arrive_time_num">平均到达时间</th>
37
+      <th nzWidth="9%" nzShowSort nzSortKey="execution_time_num" [(nzSort)]="sortCurrent.execution_time_num">平均送达时间</th>
38
+      <th nzWidth="9%" nzShowSort nzSortKey="aveper" [(nzSort)]="sortCurrent.aveper">按时完成达标率</th>
39
+      <th nzWidth="9%" nzShowSort nzSortKey="total_time" [(nzSort)]="sortCurrent.total_time">平均总时间</th>
40
+      <th nzWidth="9%" nzShowSort nzSortKey="five_count" [(nzSort)]="sortCurrent.five_count">五分钟内工单</th>
41
+      <th nzWidth="9%" nzShowSort nzSortKey="special_close" [(nzSort)]="sortCurrent.special_close">特殊关闭数</th>
41 42
     </tr>
42 43
   </thead>
43 44
   <tbody>
@@ -47,6 +48,7 @@
47 48
       <td>{{ data.totalGrade }}</td>
48 49
 			<td>{{ data.totalPrice }}</td>
49 50
       <td>{{ data.response_time_num }}</td>
51
+      <td>{{ data.arrive_time_num }}</td>
50 52
       <td>{{ data.execution_time_num }}</td>
51 53
       <td>{{ data.aveper }}</td>
52 54
       <td>{{ data.total_time }}</td>
@@ -58,15 +60,16 @@
58 60
     <table class="footTable">
59 61
       <tr *ngFor="let data of listOfDataEnd">
60 62
         <td style="width: 10%">{{ data.name }}</td>
61
-        <td style="width: 10%">{{ data.totalCount }}</td>
62
-        <td style="width: 10%">{{ data.totalGrade }}</td>
63
-				<td style="width: 10%">{{ data.totalPrice }}</td>
64
-        <td style="width: 10%">{{ data.response_time_num }}</td>
65
-        <td style="width: 10%">{{ data.execution_time_num }}</td>
66
-        <td style="width: 10%">{{ data.aveper }}</td>
67
-        <td style="width: 10%">{{ data.total_time }}</td>
68
-        <td style="width: 10%">{{ data.five_count }}</td>
69
-        <td style="width: 10%">{{ data.special_close }}</td>
63
+        <td style="width: 9%">{{ data.totalCount }}</td>
64
+        <td style="width: 9%">{{ data.totalGrade }}</td>
65
+				<td style="width: 9%">{{ data.totalPrice }}</td>
66
+        <td style="width: 9%">{{ data.response_time_num }}</td>
67
+        <td style="width: 9%">{{ data.arrive_time_num }}</td>
68
+        <td style="width: 9%">{{ data.execution_time_num }}</td>
69
+        <td style="width: 9%">{{ data.aveper }}</td>
70
+        <td style="width: 9%">{{ data.total_time }}</td>
71
+        <td style="width: 9%">{{ data.five_count }}</td>
72
+        <td style="width: 9%">{{ data.special_close }}</td>
70 73
       </tr>
71 74
     </table>
72 75
   </ng-template>

+ 6 - 6
src/app/views/new-statistics/distribution-inspection-statistics/user-quality-control-statistics/user-quality-control-statistics.component.ts

@@ -140,9 +140,9 @@ export class UserQualityControlStatisticsComponent implements OnInit, AfterViewI
140 140
   }
141 141
 
142 142
   // 列表排序
143
-  sortCurrent:any = {};
144
-  sortCurrentKey: string = "";
145
-  sortCurrentValue: string | null = "";
143
+  sortCurrent:any = {totalGrade: 'descend'};
144
+  sortCurrentKey: string = "totalGrade";
145
+  sortCurrentValue: string | null = "descend";
146 146
   sort(e) {
147 147
     const { key, value } = e;
148 148
     this.sortCurrentKey = key;
@@ -201,9 +201,9 @@ export class UserQualityControlStatisticsComponent implements OnInit, AfterViewI
201 201
   }
202 202
   // 重置
203 203
   reset(){
204
-    this.sortCurrentKey = "";
205
-		this.sortCurrentValue = "";
206
-		this.sortCurrent = {};
204
+    this.sortCurrentKey = "totalGrade";
205
+		this.sortCurrentValue = "descend";
206
+		this.sortCurrent = {totalGrade: 'descend'};
207 207
     this.dateRange = []
208 208
     this.userId = undefined;
209 209
     this.fieldConfig.fields = {buildingId: undefined, deptId: undefined, groupId: undefined};