|
|
|
@ -1,4 +1,4 @@
|
|
|
|
|
import { Component, OnInit, ViewChild, TemplateRef } from '@angular/core'; |
|
|
|
|
import { Component, OnInit, ViewChild, TemplateRef, ViewContainerRef } from '@angular/core'; |
|
|
|
|
import { Router, NavigationEnd, ActivatedRoute } from '@angular/router'; |
|
|
|
|
import { Title } from '@angular/platform-browser' |
|
|
|
|
import { filter } from 'rxjs/operators'; |
|
|
|
@ -8,6 +8,9 @@ import { CookieService } from 'ngx-cookie-service';
|
|
|
|
|
import { NzMessageService } from 'ng-zorro-antd/message'; |
|
|
|
|
import { SignalRAspNetCoreHelper } from '../../../shared/helpers/SignalRAspNetCoreHelper'; |
|
|
|
|
import { NzNotificationService } from 'ng-zorro-antd/notification'; |
|
|
|
|
import { GetOutOfLineDetailsComponent } from '../today-warning/get-out-of-line-details/get-out-of-line-details.component'; |
|
|
|
|
import { NzModalService } from 'ng-zorro-antd/modal'; |
|
|
|
|
import { HttpClient } from '@angular/common/http'; |
|
|
|
|
declare var abp: any |
|
|
|
|
|
|
|
|
|
@Component({ |
|
|
|
@ -17,8 +20,8 @@ declare var abp: any
|
|
|
|
|
}) |
|
|
|
|
export class HomeComponent implements OnInit { |
|
|
|
|
@ViewChild('warning', { static: false }) template?: TemplateRef<{}>; |
|
|
|
|
constructor(private router: Router, private navChangeService: NavChangeService, public token: CacheTokenService, |
|
|
|
|
private cookieService: CookieService, private message: NzMessageService, private notificationService: NzNotificationService) { } |
|
|
|
|
constructor(private http: HttpClient, private router: Router, private navChangeService: NavChangeService, public token: CacheTokenService, |
|
|
|
|
private cookieService: CookieService, private message: NzMessageService, private notificationService: NzNotificationService, private modal: NzModalService, private viewContainerRef: ViewContainerRef) { } |
|
|
|
|
|
|
|
|
|
isGasStationNav: boolean |
|
|
|
|
isGasStation: boolean |
|
|
|
@ -89,26 +92,60 @@ export class HomeComponent implements OnInit {
|
|
|
|
|
this.receiptOfNotification(userNotification) |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
messageId=[] |
|
|
|
|
messageId = [] |
|
|
|
|
receiptOfNotification(userNotification) { |
|
|
|
|
let obj = { |
|
|
|
|
id:'xxx', |
|
|
|
|
messageId:this.notificationService.template(this.template!, {nzPlacement: 'bottomRight', nzClass: 'receiptOfNotification', nzDuration: 0, nzData: userNotification}).messageId |
|
|
|
|
id: userNotification.notification.entityId, |
|
|
|
|
messageId: this.notificationService.template(this.template!, { nzPlacement: 'bottomRight', nzClass: 'receiptOfNotification', nzDuration: 0, nzData: userNotification }).messageId |
|
|
|
|
} |
|
|
|
|
this.messageId.push(obj) |
|
|
|
|
console.log(99999,this.messageId) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
look(item) { |
|
|
|
|
let params = { |
|
|
|
|
id: item.notification.entityId |
|
|
|
|
} |
|
|
|
|
this.http.get('/api/services/app/ViolateRecord/Get', { |
|
|
|
|
params: params |
|
|
|
|
}).subscribe((data: any) => { |
|
|
|
|
const modal = this.modal.create({ |
|
|
|
|
nzContent: GetOutOfLineDetailsComponent, |
|
|
|
|
nzViewContainerRef: this.viewContainerRef, |
|
|
|
|
nzWidth: 1200, |
|
|
|
|
nzBodyStyle: { |
|
|
|
|
'border': '1px solid #6d9cc7', |
|
|
|
|
'border-radius': '0px', |
|
|
|
|
'padding': '0px', |
|
|
|
|
'box-shadow': '0 0 8px 0 #fff', |
|
|
|
|
'background': '#000D21', |
|
|
|
|
}, |
|
|
|
|
nzComponentParams: { |
|
|
|
|
data: data.result |
|
|
|
|
}, |
|
|
|
|
nzFooter: null, |
|
|
|
|
nzOnOk: async () => { |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
const instance = modal.getContentComponent(); |
|
|
|
|
this.messageId.forEach((element) => { |
|
|
|
|
if (element.id == item.notification.entityId) { |
|
|
|
|
this.notificationService.remove(element.messageId) |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
close(item){ |
|
|
|
|
this.messageId.forEach((element)=>{ |
|
|
|
|
if(element.id == 'xxx'){ |
|
|
|
|
} |
|
|
|
|
close(item) { |
|
|
|
|
// console.log(item)
|
|
|
|
|
this.messageId.forEach((element) => { |
|
|
|
|
if (element.id == item.notification.entityId) { |
|
|
|
|
this.notificationService.remove(element.messageId) |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ngOnDestroy() { |
|
|
|
|
abp.signalr.disconnect() |
|
|
|
|
} |
|
|
|
|