|
|
|
@ -20,7 +20,7 @@ import { DisposeequipmentComponent } from '../records/warning-statistics-list/di
|
|
|
|
|
export class TodayWarningComponent implements OnInit { |
|
|
|
|
validateForm!: FormGroup; |
|
|
|
|
constructor(private listRefreshService: listRefreshService, private http: HttpClient, private fb: FormBuilder, private toTree: TreeService, private modal: NzModalService, private viewContainerRef: ViewContainerRef, private navChangeService: NavChangeService, private message: NzMessageService) { } |
|
|
|
|
|
|
|
|
|
isMisinformation: boolean = false//误报按钮的显隐
|
|
|
|
|
ngOnInit(): void { |
|
|
|
|
this.validateForm = this.fb.group({ |
|
|
|
|
level: [null], |
|
|
|
@ -59,6 +59,21 @@ export class TodayWarningComponent implements OnInit {
|
|
|
|
|
// console.log('新获取一条', data.result)
|
|
|
|
|
// })
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
let loginUserInfo |
|
|
|
|
if (sessionStorage.getItem('isGasStation') == 'true') { |
|
|
|
|
loginUserInfo = JSON.parse(sessionStorage.getItem('userdataOfgasstation')) |
|
|
|
|
} else { |
|
|
|
|
loginUserInfo = JSON.parse(sessionStorage.getItem('userdata')) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (loginUserInfo.permissions.find((item) => { |
|
|
|
|
return item.name == 'Data.Violation.Positive.Censor' |
|
|
|
|
})) { |
|
|
|
|
this.isMisinformation = true |
|
|
|
|
} else { |
|
|
|
|
this.isMisinformation = false |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//预警类型接口
|
|
|
|
|