From 134871d5920e7bec44db20c68ea4e488c47ce896 Mon Sep 17 00:00:00 2001 From: cpf <1105965053@qq.com> Date: Thu, 23 Jun 2022 10:50:36 +0800 Subject: [PATCH] =?UTF-8?q?=E8=8F=9C=E5=8D=95=E7=AE=A1=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../navigation/navigation.component.ts | 33 +++++++++++++++++-- 1 file changed, 30 insertions(+), 3 deletions(-) diff --git a/src/app/system-management/navigation/navigation.component.ts b/src/app/system-management/navigation/navigation.component.ts index 35651c4..600c810 100644 --- a/src/app/system-management/navigation/navigation.component.ts +++ b/src/app/system-management/navigation/navigation.component.ts @@ -9,14 +9,41 @@ import { Router } from '@angular/router'; export class NavigationComponent implements OnInit { constructor(private router: Router) { } - + userMenu=[] + menu=[] + tap=[] + menuList1=[] + menu1 = [ + { name: '首页', url: '/homepage' }, + { name: '数字油站', url: '/plan' }, + { name: '今日预警', url: '/todaywarning' }, + { name: '预警记录', url: '/records_nav' }, + { name: '证照管理', url: '/audit' }, + ] ngOnInit(): void { + let a= sessionStorage.getItem('userdata') + this.userMenu=JSON.parse(a).menus + for (let index = 0; index < this.userMenu.length; index++) { + let a=this.userMenu[index].name + this.tap.push(a) + + } + for (let index = 0; index < this.menu1.length; index++) { + for (let k = 0; k < this.tap.length; k++) { + if (this.tap[k]==this.menu1[index].name) { + this.menuList1.push(this.menu1[index]) + } + } + console.log(this.menuList1); + } + + } signOut() { this.router.navigate(['/login']) } pages() { - sessionStorage.setItem('selectedMenu', '数字油站') - this.router.navigate(['/plan']) + sessionStorage.setItem('selectedMenu', this.menuList1[0].name) + this.router.navigate([this.menuList1[0].url]) } }