|
|
|
@ -2,7 +2,7 @@ import { HttpClient } from '@angular/common/http';
|
|
|
|
|
import { Component, OnInit, Input } from '@angular/core'; |
|
|
|
|
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; |
|
|
|
|
import { NzMessageService } from 'ng-zorro-antd/message'; |
|
|
|
|
import { NzModalService } from 'ng-zorro-antd/modal'; |
|
|
|
|
import { NzModalRef, NzModalService } from 'ng-zorro-antd/modal'; |
|
|
|
|
@Component({ |
|
|
|
|
selector: 'app-get-out-of-line-details', |
|
|
|
|
templateUrl: './get-out-of-line-details.component.html', |
|
|
|
@ -11,19 +11,37 @@ import { NzModalService } from 'ng-zorro-antd/modal';
|
|
|
|
|
export class GetOutOfLineDetailsComponent implements OnInit { |
|
|
|
|
@Input() data: any |
|
|
|
|
|
|
|
|
|
constructor(private fb: FormBuilder, private http: HttpClient, private message: NzMessageService, private modal: NzModalService) { } |
|
|
|
|
constructor(private fb: FormBuilder, private http: HttpClient, private message: NzMessageService, private modal: NzModalService, private initialModal: NzModalRef) { } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
imgUrl: string |
|
|
|
|
vedioUrl: string |
|
|
|
|
content |
|
|
|
|
details |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
isMisinformation: boolean = false//误报按钮的显隐
|
|
|
|
|
ngOnInit(): void { |
|
|
|
|
console.log(this.data) |
|
|
|
|
this.details = this.data.content1 |
|
|
|
|
this.imgUrl = this.data.violateImage |
|
|
|
|
this.vedioUrl = this.data.violateVideo |
|
|
|
|
this.content = this.data.handleRecord |
|
|
|
|
|
|
|
|
|
let loginUserInfo |
|
|
|
|
if (sessionStorage.getItem('isGasStation') == 'true') { |
|
|
|
|
loginUserInfo = JSON.parse(sessionStorage.getItem('userdataOfgasstation')) |
|
|
|
|
} else { |
|
|
|
|
loginUserInfo = JSON.parse(sessionStorage.getItem('userdata')) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (loginUserInfo.roles.find((item) => { |
|
|
|
|
return item.name == 'ViolationPositiveChecker' |
|
|
|
|
}) && this.data.violation.eventSystemName != '证照预警') { |
|
|
|
|
this.isMisinformation = true |
|
|
|
|
} else { |
|
|
|
|
this.isMisinformation = false |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -54,18 +72,14 @@ export class GetOutOfLineDetailsComponent implements OnInit {
|
|
|
|
|
nzOnOk: () => { |
|
|
|
|
let body = { |
|
|
|
|
id: this.data.id, |
|
|
|
|
handleRecord: this.content ? this.content : '此条预警为误报', |
|
|
|
|
isFalsePositive: true |
|
|
|
|
positive: false |
|
|
|
|
} |
|
|
|
|
this.http.post('/api/services/app/ViolateRecord/HandleViolateRecord', body).subscribe(data => { |
|
|
|
|
this.http.post('/api/services/app/ViolateRecord/CheckViolateRecord', body).subscribe(data => { |
|
|
|
|
this.message.create('success', '处置成功!'); |
|
|
|
|
this.data.handleTime = new Date() |
|
|
|
|
if (this.content) { |
|
|
|
|
this.data.handleRecord = this.content |
|
|
|
|
} else { |
|
|
|
|
this.data.handleRecord = '此条预警为误报' |
|
|
|
|
this.content = '此条预警为误报' |
|
|
|
|
} |
|
|
|
|
// this.data.handleTime = new Date()
|
|
|
|
|
this.initialModal.triggerOk() |
|
|
|
|
}, err => { |
|
|
|
|
this.message.create('warning', '处置失败,请联系管理员!'); |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|