|
|
|
@ -542,8 +542,10 @@ export class WarningStatisticsListComponent implements OnInit {
|
|
|
|
|
list: any = [] |
|
|
|
|
totalCount: string |
|
|
|
|
tableSpin: boolean = false |
|
|
|
|
isLoading = false |
|
|
|
|
//获得证照预警
|
|
|
|
|
getLicenseList() { |
|
|
|
|
this.isLoading = true |
|
|
|
|
for (const key in this.validateForm.controls) { |
|
|
|
|
this.validateForm.controls[key].markAsPristine(); |
|
|
|
|
this.validateForm.controls[key].updateValueAndValidity(); |
|
|
|
@ -583,6 +585,7 @@ export class WarningStatisticsListComponent implements OnInit {
|
|
|
|
|
this.list = this.list.concat(data.result.items); |
|
|
|
|
this.list = [...this.list] |
|
|
|
|
this.totalCount = data.result.totalCount |
|
|
|
|
this.isLoading = false |
|
|
|
|
console.log('证照预警列表', data.result.items) |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|