|
|
|
@ -17,12 +17,11 @@ export class HomeComponent implements OnInit {
|
|
|
|
|
private cookieService: CookieService, private message: NzMessageService) { } |
|
|
|
|
isGasStationNav: boolean |
|
|
|
|
isGasStation: boolean |
|
|
|
|
isWarning: boolean = false//是否是今日预警页面
|
|
|
|
|
isGasStationBack: boolean |
|
|
|
|
num |
|
|
|
|
|
|
|
|
|
surname: string |
|
|
|
|
userName: string |
|
|
|
|
// isGasStation: string
|
|
|
|
|
ngOnInit(): void { |
|
|
|
|
|
|
|
|
|
this.navChangeService.getMessage().subscribe((message: any) => { |
|
|
|
@ -30,25 +29,21 @@ export class HomeComponent implements OnInit {
|
|
|
|
|
if (message.name == 'oilstation') { |
|
|
|
|
this.isGasStationNav = true |
|
|
|
|
} |
|
|
|
|
if (message.name == '改变数量') { |
|
|
|
|
this.isWarning = true |
|
|
|
|
this.num = message.num |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
if (this.router.url.indexOf('warning') != -1) { |
|
|
|
|
this.isWarning = true |
|
|
|
|
} else { |
|
|
|
|
this.isWarning = false |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (this.router.url.indexOf('petrolStation') != -1 && sessionStorage.getItem('isGasStation') == 'false') {//控制返回按钮显示
|
|
|
|
|
this.isGasStation = true |
|
|
|
|
this.isGasStationBack = true |
|
|
|
|
} else { |
|
|
|
|
this.isGasStation = false |
|
|
|
|
this.isGasStationBack = false |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// if (this.router.url.indexOf('petrolStation') != -1 && sessionStorage.getItem('isGasStation') == 'true') {
|
|
|
|
|
// this.isGasStation = true
|
|
|
|
|
// } else {
|
|
|
|
|
// this.isGasStation = false
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
if (sessionStorage.getItem('isGasStation') == 'true') { |
|
|
|
|
this.isGasStation = true |
|
|
|
|
this.isGasStationNav = true |
|
|
|
@ -60,15 +55,10 @@ export class HomeComponent implements OnInit {
|
|
|
|
|
this.router.events.pipe( |
|
|
|
|
filter(event => event instanceof NavigationEnd) |
|
|
|
|
).subscribe((event: any) => { |
|
|
|
|
if (event.url.indexOf('warning') != -1) {//控制今日预警左上角数字显示
|
|
|
|
|
|
|
|
|
|
} else { |
|
|
|
|
this.isWarning = false |
|
|
|
|
} |
|
|
|
|
if (event.url.indexOf('petrolStation') != -1 && sessionStorage.getItem('isGasStation') == 'false') {//控制返回按钮显示
|
|
|
|
|
this.isGasStation = true |
|
|
|
|
this.isGasStationBack = true |
|
|
|
|
} else { |
|
|
|
|
this.isGasStation = false |
|
|
|
|
this.isGasStationBack = false |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|