Browse Source

菜单管理

beijing
陈鹏飞 3 years ago
parent
commit
bc3ae214e2
  1. 2
      src/app/pages/login/login.component.ts
  2. 16
      src/app/system-management/navigation/navigation.component.ts

2
src/app/pages/login/login.component.ts

@ -124,7 +124,7 @@ export class LoginComponent implements OnInit {
sessionStorage.setItem("encryptedAccessToken", data.result.encryptedAccessToken); sessionStorage.setItem("encryptedAccessToken", data.result.encryptedAccessToken);
this.http.get('/api/services/app/Session/GetCurrentLoginInformations').subscribe((data: any) => { this.http.get('/api/services/app/Session/GetCurrentLoginInformations').subscribe((data: any) => {
console.log('GetCurrentLoginInformations', data.result) console.log('GetCurrentLoginInformations', data.result)
if (data.result.user.menus.length == 0) { if (data.result.user.menus.length == 0 && data.result.name!="admin") {
this.message.create('error', `当前用户未分配菜单`); this.message.create('error', `当前用户未分配菜单`);
this.isLoading = false this.isLoading = false
return return

16
src/app/system-management/navigation/navigation.component.ts

@ -45,16 +45,20 @@ export class NavigationComponent implements OnInit {
this.menuList1.push(this.menu1[index]) this.menuList1.push(this.menu1[index])
} }
} }
console.log(this.menuList1); // console.log(this.menuList1);
} }
for (let index = 0; index < this.menu3.length; index++) { for (let index = 0; index < this.menu3.length; index++) {
let url="" let url=""
for (let k = 0; k < this.tap.length; k++) { if(JSON.parse(a).userName=="admin"){
if (this.tap[k]==this.menu3[index].name) { this.menuList2=this.menu3
this.menuList2.push(this.menu3[index]) }else{
for (let k = 0; k < this.tap.length; k++) {
if (this.tap[k]==this.menu3[index].name) {
this.menuList2.push(this.menu3[index])
}
} }
} }
} }

Loading…
Cancel
Save