|
|
|
@ -111,7 +111,7 @@ export class CriminalRecordsAdminComponent implements OnInit {
|
|
|
|
|
ViolateArea: this.validateForm.value.site, |
|
|
|
|
OrganizationUnitId: JSON.parse(sessionStorage.getItem('userdata')).organization.id, |
|
|
|
|
IsContainsChildren: 'true', |
|
|
|
|
IsCensored: 'false', |
|
|
|
|
CanCensor: 'true', |
|
|
|
|
// IsHandled: disposalState,
|
|
|
|
|
ViolateTime: this.validateForm.value.datePicker ? [moment(this.validateForm.value.datePicker[0]).format('yyyy-MM-DD'), moment(this.validateForm.value.datePicker[1]).format('yyyy-MM-DD')] : null, |
|
|
|
|
SkipCount: this.SkipCount, |
|
|
|
@ -147,7 +147,20 @@ export class CriminalRecordsAdminComponent implements OnInit {
|
|
|
|
|
} |
|
|
|
|
reloadPage = (userNotification) => { |
|
|
|
|
console.log('abp.notifications.received收到通知', userNotification); |
|
|
|
|
|
|
|
|
|
console.log('违规记录列表', this.list) |
|
|
|
|
let params = { |
|
|
|
|
id: userNotification.notification.entityId |
|
|
|
|
} |
|
|
|
|
this.http.get('/api/services/app/ViolateRecordCensorship/Get', { |
|
|
|
|
params: params |
|
|
|
|
}).subscribe((data: any) => { |
|
|
|
|
data.result.isNewMessage = true |
|
|
|
|
this.list.unshift(data.result) |
|
|
|
|
this.message.create('success', '收到一条新预警!'); |
|
|
|
|
this.totalCount = String(Number(this.totalCount) + 1) |
|
|
|
|
this.SkipCount = String(Number(this.SkipCount) + 1) |
|
|
|
|
console.log('新获取一条', data.result) |
|
|
|
|
}) |
|
|
|
|
}; |
|
|
|
|
ngOnDestroy() { |
|
|
|
|
console.log('退出') |
|
|
|
|