|
|
|
@ -17,6 +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"; |
|
|
|
|
@Component({ |
|
|
|
|
selector: 'app-home', |
|
|
|
|
templateUrl: './home.component.html', |
|
|
|
@ -26,12 +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 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]] |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -93,6 +96,38 @@ export class HomeComponent implements OnInit {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
ngOnInit(): void { |
|
|
|
|
this.location.subscribe(event => { |
|
|
|
|
|
|
|
|
|
if(event.url=="/homepage"){ |
|
|
|
|
sessionStorage.setItem('selectedMenu', "首页") |
|
|
|
|
this.selectedItem = "首页" |
|
|
|
|
}else if(event.url=="/plan"||event.url=="/plan/petrolStation"){ |
|
|
|
|
sessionStorage.setItem('selectedMenu', "数字油站") |
|
|
|
|
this.selectedItem = "数字油站" |
|
|
|
|
}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"){ |
|
|
|
|
console.log(1); |
|
|
|
|
|
|
|
|
|
this.router.navigate(['/records_nav/all']) |
|
|
|
|
|
|
|
|
|
}else if(event.url=="/records_nav/petrolStation"){ |
|
|
|
|
console.log(4963); |
|
|
|
|
|
|
|
|
|
this.router.navigate(['/records_nav/petrolStation/all']) |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
sessionStorage.setItem('selectedMenu', "预警记录") |
|
|
|
|
this.selectedItem = "预警记录" |
|
|
|
|
}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++) { |
|
|
|
|