陈鹏飞 3 years ago
parent
commit
89b4cdfed5
  1. 43
      src/app/pages/home/home.component.ts

43
src/app/pages/home/home.component.ts

@ -42,34 +42,36 @@ export class HomeComponent implements OnInit {
surname: string surname: string
userName: string userName: string
ngOnInit(): void { ngOnInit(): void {
this.isGasStation = JSON.parse(sessionStorage.getItem('isGasStation'))
// this.navChangeService.getMessage().subscribe((message: any) => { //初始化登陆 如果是油站用户
// console.log(message);//send a message if (this.isGasStation) {
// if (message.name == 'oilstation') {
// this.isGasStationNav = true
// }
// });
if (this.router.url.indexOf('petrolStation') != -1 && sessionStorage.getItem('isGasStation') == 'false') {//控制返回按钮显示
this.isGasStationNav = true this.isGasStationNav = true
this.isGasStationBack = true } else {//初始化登陆 如果是管理者用户
} else {
this.isGasStationNav = false this.isGasStationNav = false
this.isGasStationBack = false this.isGasStationBack = false
} }
if (sessionStorage.getItem('isGasStation') == 'true') {
this.isGasStation = true
this.isGasStationNav = true
}
this.router.events.pipe( this.router.events.pipe(
filter(event => event instanceof NavigationEnd) filter(event => event instanceof NavigationEnd)
).subscribe((event: any) => { ).subscribe((event: any) => {
if (event.url.indexOf('petrolStation') != -1 && sessionStorage.getItem('isGasStation') == 'false') {//控制返回按钮显示 //管理者进入油站页面
if (event.url.indexOf('petrolStation') != -1 && !this.isGasStation) {//控制返回按钮显示
this.isGasStationNav = true this.isGasStationNav = true
this.isGasStationBack = true this.isGasStationBack = true
} else { }
//管理者进入非油站页面
if (event.url.indexOf('petrolStation') == -1 && !this.isGasStation) {//控制返回按钮显示
this.isGasStationNav = false
this.isGasStationBack = false
}
//油站人员进入管理页面
if (event.url.indexOf('petrolStation') == -1 && this.isGasStation) {//控制返回按钮显示
this.isGasStationNav = false
this.isGasStationBack = false
}
//油站人员进入油站
if (event.url.indexOf('petrolStation') != -1 && this.isGasStation) {//控制返回按钮显示
this.isGasStationNav = true
this.isGasStationBack = false this.isGasStationBack = false
} }
}); });
@ -77,7 +79,7 @@ export class HomeComponent implements OnInit {
setInterval(() => { setInterval(() => {
this.getTime() this.getTime()
}, 1000); }, 1000);
this.isGasStation = JSON.parse(sessionStorage.getItem('isGasStation'))
if (this.isGasStation) { if (this.isGasStation) {
this.surname = JSON.parse(sessionStorage.getItem('userdataOfgasstation')).name this.surname = JSON.parse(sessionStorage.getItem('userdataOfgasstation')).name
this.userName = JSON.parse(sessionStorage.getItem('userdataOfgasstation')).userName this.userName = JSON.parse(sessionStorage.getItem('userdataOfgasstation')).userName
@ -93,6 +95,7 @@ export class HomeComponent implements OnInit {
} }
//初次登陆修改密码弹窗 //初次登陆修改密码弹窗
isVisible = false isVisible = false
isConfirmLoading = false isConfirmLoading = false
@ -303,6 +306,7 @@ export class HomeComponent implements OnInit {
console.log('标记已读成功') console.log('标记已读成功')
}) })
} }
close(item) { close(item) {
this.messageId.forEach((element) => { this.messageId.forEach((element) => {
if (element.id == item.notification.entityId) { if (element.id == item.notification.entityId) {
@ -310,6 +314,7 @@ export class HomeComponent implements OnInit {
} }
}) })
} }
//处置 //处置
updateState(item, type) { updateState(item, type) {
let body = { let body = {

Loading…
Cancel
Save