|
|
|
@ -17,7 +17,7 @@ import * as moment from 'moment';
|
|
|
|
|
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; |
|
|
|
|
import { DisposeequipmentComponent } from '../records/warning-statistics-list/disposeequipment/disposeequipment.component'; |
|
|
|
|
import { SelectedMenu } from 'src/app/service/selectedMenu.service'; |
|
|
|
|
import {Location} from "@angular/common"; |
|
|
|
|
import { Location } from "@angular/common"; |
|
|
|
|
@Component({ |
|
|
|
|
selector: 'app-home', |
|
|
|
|
templateUrl: './home.component.html', |
|
|
|
@ -27,14 +27,14 @@ export class HomeComponent implements OnInit {
|
|
|
|
|
@ViewChild('warning', { static: false }) template?: TemplateRef<{}>; |
|
|
|
|
passwordValidateForm!: FormGroup; |
|
|
|
|
constructor(private listRefreshService: listRefreshService, private http: HttpClient, private router: Router, private navChangeService: NavChangeService, public token: CacheTokenService, |
|
|
|
|
private message: NzMessageService, private notificationService: NzNotificationService, private modal: NzModalService, private viewContainerRef: ViewContainerRef, private fb: FormBuilder, private selectedMenu: SelectedMenu,private location: Location) { |
|
|
|
|
private message: NzMessageService, private notificationService: NzNotificationService, private modal: NzModalService, private viewContainerRef: ViewContainerRef, private fb: FormBuilder, private selectedMenu: SelectedMenu, private location: Location) { |
|
|
|
|
const { password } = MyValidators; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.passwordValidateForm = this.fb.group({ |
|
|
|
|
oldpassword: [null, [Validators.required]], |
|
|
|
|
newpassword: [null, [Validators.required, password]], |
|
|
|
|
affirmpassword: [null, [Validators.required, password]] |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -78,14 +78,14 @@ export class HomeComponent implements OnInit {
|
|
|
|
|
menuList2 = [] |
|
|
|
|
selectedItem |
|
|
|
|
routerChange(item) { |
|
|
|
|
if(JSON.parse(sessionStorage.getItem('isGasStation'))){ |
|
|
|
|
let a=JSON.parse(sessionStorage.getItem("3dSceneData")) |
|
|
|
|
if(!a.hasBuildingInfo && item.url == "/plan/petrolStation"){ |
|
|
|
|
if (JSON.parse(sessionStorage.getItem('isGasStation'))) { |
|
|
|
|
let a = JSON.parse(sessionStorage.getItem("3dSceneData")) |
|
|
|
|
if (!a.hasBuildingInfo && item.url == "/plan/petrolStation") { |
|
|
|
|
this.message.info("当前油站未开通!"); |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (item.name == this.selectedItem) { |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
@ -96,33 +96,33 @@ export class HomeComponent implements OnInit {
|
|
|
|
|
|
|
|
|
|
ngOnInit(): void { |
|
|
|
|
this.location.subscribe(event => { |
|
|
|
|
|
|
|
|
|
if(event.url=="/homepage"){ |
|
|
|
|
|
|
|
|
|
if (event.url == "/homepage") { |
|
|
|
|
sessionStorage.setItem('selectedMenu', "首页") |
|
|
|
|
this.selectedItem = "首页" |
|
|
|
|
}else if(event.url=="/plan"||event.url=="/plan/petrolStation"){ |
|
|
|
|
} else if (event.url == "/plan" || event.url == "/plan/petrolStation") { |
|
|
|
|
sessionStorage.setItem('selectedMenu', "数字油站") |
|
|
|
|
this.selectedItem = "数字油站" |
|
|
|
|
}else if(event.url=="/todaywarning"||event.url=="/todaywarning/petrolStation"){ |
|
|
|
|
} else if (event.url == "/todaywarning" || event.url == "/todaywarning/petrolStation") { |
|
|
|
|
sessionStorage.setItem('selectedMenu', "今日预警") |
|
|
|
|
this.selectedItem = "今日预警" |
|
|
|
|
}else if(event.url.indexOf("/records_nav")!=-1){ |
|
|
|
|
if(event.url=="/records_nav"){ |
|
|
|
|
} else if (event.url.indexOf("/records_nav") != -1) { |
|
|
|
|
if (event.url == "/records_nav") { |
|
|
|
|
this.router.navigate(['/records_nav/all']) |
|
|
|
|
}else if(event.url=="/records_nav/petrolStation"){ |
|
|
|
|
|
|
|
|
|
} else if (event.url == "/records_nav/petrolStation") { |
|
|
|
|
|
|
|
|
|
this.router.navigate(['/records_nav/petrolStation/all']) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
sessionStorage.setItem('selectedMenu', "预警记录") |
|
|
|
|
this.selectedItem = "预警记录" |
|
|
|
|
}else if(event.url=="/license"||event.url=="/license/petrolStation"){ |
|
|
|
|
} else if (event.url == "/license" || event.url == "/license/petrolStation") { |
|
|
|
|
sessionStorage.setItem('selectedMenu', "证照管理") |
|
|
|
|
this.selectedItem = "证照管理" |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
let a = sessionStorage.getItem('userdata') |
|
|
|
|
this.userMenu = JSON.parse(a).menus |
|
|
|
|
for (let index = 0; index < this.userMenu.length; index++) { |
|
|
|
@ -252,7 +252,7 @@ export class HomeComponent implements OnInit {
|
|
|
|
|
|
|
|
|
|
reloadPage = (userNotification) => { |
|
|
|
|
console.log('abp.notifications.received收到通知', userNotification); |
|
|
|
|
if (this.router.url.indexOf('todaywarning') != -1) { |
|
|
|
|
if (this.router.url.indexOf('todaywarning') != -1 || this.router.url.indexOf('homepage') != -1) { |
|
|
|
|
let obj = { |
|
|
|
|
type: 'add', |
|
|
|
|
data: userNotification |
|
|
|
|