|
|
|
@ -38,7 +38,7 @@ export class WarningStatisticsListComponent implements OnInit {
|
|
|
|
|
isOrShow: boolean |
|
|
|
|
|
|
|
|
|
isMisinformation: boolean = false//误报按钮的显隐
|
|
|
|
|
button=false |
|
|
|
|
button = false |
|
|
|
|
tableScrollHeight |
|
|
|
|
resizeListener |
|
|
|
|
ngOnInit(): void { |
|
|
|
@ -56,7 +56,7 @@ export class WarningStatisticsListComponent implements OnInit {
|
|
|
|
|
this.returnLastMenus() |
|
|
|
|
} else { |
|
|
|
|
loginUserInfo = JSON.parse(sessionStorage.getItem('userdata')) |
|
|
|
|
this.button=false |
|
|
|
|
this.button = false |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (loginUserInfo.roles.find((item) => { |
|
|
|
@ -103,10 +103,10 @@ export class WarningStatisticsListComponent implements OnInit {
|
|
|
|
|
} |
|
|
|
|
returnLastMenus() { |
|
|
|
|
let userMenu = JSON.parse(sessionStorage.getItem('userdataOfgasstation')).menus |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (let index = 0; index < userMenu.length; index++) { |
|
|
|
|
if (userMenu[index].parentId==7) { |
|
|
|
|
this.button=true |
|
|
|
|
if (userMenu[index].parentId == 7) { |
|
|
|
|
this.button = true |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
return |
|
|
|
@ -582,20 +582,15 @@ export class WarningStatisticsListComponent implements OnInit {
|
|
|
|
|
}); |
|
|
|
|
this.http.get('/api/services/app/Violation/GetAllList').subscribe((data: any) => { |
|
|
|
|
console.log('预警事件', data.result) |
|
|
|
|
let option1 |
|
|
|
|
let option2 |
|
|
|
|
|
|
|
|
|
data.result.forEach(element => { |
|
|
|
|
if (element.violationType == '证照资质') { |
|
|
|
|
option1 = element.id |
|
|
|
|
} |
|
|
|
|
if (element.violationType == '设备监测') { |
|
|
|
|
option2 = element.id |
|
|
|
|
if (element.violationType == '设备监测' || element.violationType == '证照资质') { |
|
|
|
|
this.eventSystemNameOption.push( |
|
|
|
|
{ id: element.id, name: element.eventSystemName } |
|
|
|
|
) |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
this.eventSystemNameOption = [ |
|
|
|
|
{ id: option1, name: '证照预警' }, |
|
|
|
|
{ id: option2, name: '消防设施预警' }, |
|
|
|
|
] |
|
|
|
|
|
|
|
|
|
this.list = [] |
|
|
|
|
this.SkipCount = '0' |
|
|
|
|
this.getLicenseList() |
|
|
|
@ -635,7 +630,6 @@ export class WarningStatisticsListComponent implements OnInit {
|
|
|
|
|
ViolationIds.push(element.id) |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
console.log('xxx', this.validateForm.value.licenseType) |
|
|
|
|
let params = { |
|
|
|
|
ViolationIds: ViolationIds, |
|
|
|
|
organizationUnitId: organizationUnitId, |
|
|
|
|