You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
142 lines
4.2 KiB
142 lines
4.2 KiB
import { HttpClient } from '@angular/common/http'; |
|
import { Component, OnInit, Input } from '@angular/core'; |
|
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; |
|
import { DomSanitizer } from '@angular/platform-browser'; |
|
import { NzMessageService } from 'ng-zorro-antd/message'; |
|
import { NzModalRef, NzModalService } from 'ng-zorro-antd/modal'; |
|
@Component({ |
|
selector: 'app-get-out-of-line-details', |
|
templateUrl: './get-out-of-line-details.component.html', |
|
styleUrls: ['./get-out-of-line-details.component.scss'] |
|
}) |
|
export class GetOutOfLineDetailsComponent implements OnInit { |
|
@Input() data: any |
|
|
|
constructor(private fb: FormBuilder, private http: HttpClient, private message: NzMessageService, private modal: NzModalService, private initialModal: NzModalRef, private sanitizer: DomSanitizer) { } |
|
|
|
|
|
imgUrl: string |
|
vedioUrl: string |
|
content |
|
details |
|
|
|
|
|
isMisinformation: boolean = false//误报按钮的显隐 |
|
|
|
|
|
isImage = true//传过来的文件是否是图片 |
|
fileUrl |
|
|
|
isLicenseWarning = false |
|
|
|
|
|
isOilStationUser |
|
ngOnInit(): void { |
|
|
|
if (this.data.violation.violationType == '证照资质') { |
|
this.isLicenseWarning = true |
|
} else { |
|
this.isLicenseWarning = false |
|
} |
|
|
|
|
|
this.details = this.data.content1 |
|
this.vedioUrl = this.data.violateVideo |
|
this.content = this.data.handleRecord |
|
this.imgUrl = this.data.violateImage |
|
|
|
if (this.imgUrl) { |
|
if (this.getFileType(this.imgUrl) == 'img') { |
|
this.isImage = true |
|
} else { |
|
this.isImage = false |
|
if (this.getFileType(this.imgUrl) == 'word') { |
|
let arr = this.imgUrl.split('.') |
|
arr[arr.length - 1] = 'pdf' |
|
this.fileUrl = this.sanitizer.bypassSecurityTrustResourceUrl(arr.join('.')); |
|
} else if (this.getFileType(this.imgUrl) == 'pdf') { |
|
this.fileUrl = this.sanitizer.bypassSecurityTrustResourceUrl(this.imgUrl); |
|
} |
|
} |
|
} |
|
|
|
|
|
let loginUserInfo |
|
if (sessionStorage.getItem('isGasStation') == 'true') { |
|
loginUserInfo = JSON.parse(sessionStorage.getItem('userdataOfgasstation')) |
|
this.isOilStationUser = true |
|
} else { |
|
loginUserInfo = JSON.parse(sessionStorage.getItem('userdata')) |
|
this.isOilStationUser = false |
|
} |
|
|
|
if (loginUserInfo.permissions.find((item) => { |
|
return item.name == 'Data.Violation.Positive.Censor' |
|
}) && this.data.violation.eventSystemName.indexOf("证照有效期") ==-1) { |
|
this.isMisinformation = true |
|
} else { |
|
this.isMisinformation = false |
|
} |
|
} |
|
|
|
|
|
//获取文件格式 |
|
getFileType(name: string): string { |
|
let suffix |
|
if (name.substring(name.length - 4).includes('png') || name.substring(name.length - 4).includes('jpg') || name.substring(name.length - 4).includes('jpeg') || name.substring(name.length - 4).includes('webp')) { |
|
suffix = 'img' |
|
} else if (name.substring(name.length - 4).includes('doc') || name.substring(name.length - 4).includes('docx')) { |
|
suffix = 'word' |
|
} else if (name.substring(name.length - 4).includes('pdf')) { |
|
suffix = 'pdf' |
|
} |
|
return suffix |
|
} |
|
|
|
|
|
|
|
|
|
|
|
selectedType: string = 'img' |
|
contentType(type) { |
|
this.selectedType = type |
|
} |
|
submit() { |
|
let body = { |
|
id: this.data.id, |
|
handleRecord: this.content |
|
} |
|
this.http.post('/api/services/app/ViolateRecord/HandleViolateRecord', body).subscribe(data => { |
|
this.message.create('success', '处置成功!'); |
|
this.data.handleTime = new Date() |
|
this.data.handleRecord = this.content |
|
|
|
|
|
}) |
|
} |
|
|
|
//误报 |
|
misinformation() { |
|
this.modal.confirm({ |
|
nzTitle: '判定该预警为误报吗?', |
|
nzOkText: '确定', |
|
nzOkType: 'danger', |
|
nzOnOk: () => { |
|
let body = { |
|
id: this.data.id, |
|
positive: false |
|
} |
|
this.http.post('/api/services/app/ViolateRecord/CensorViolateRecord', body).subscribe(data => { |
|
this.message.create('success', '处置成功!'); |
|
// this.data.handleTime = new Date() |
|
this.initialModal.triggerOk() |
|
}, err => { |
|
this.message.create('warning', '处置失败,请联系管理员!'); |
|
}) |
|
|
|
}, |
|
nzCancelText: '取消', |
|
nzOnCancel: () => console.log('Cancel') |
|
}) |
|
} |
|
}
|
|
|