Compare commits

..

No commits in common. 'bc3ae214e22ae0fe332f04b4967f35ec694b28ce' and '13f158e8e8e86dbb671e041a1d7e314fce76aac3' have entirely different histories.

  1. 2
      src/app/pages/login/login.component.ts
  2. 16
      src/app/system-management/navigation/navigation.component.ts
  3. 1
      src/app/system-management/role/role.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);
this.http.get('/api/services/app/Session/GetCurrentLoginInformations').subscribe((data: any) => {
console.log('GetCurrentLoginInformations', data.result)
if (data.result.user.menus.length == 0 && data.result.name!="admin") {
if (data.result.user.menus.length == 0) {
this.message.create('error', `当前用户未分配菜单`);
this.isLoading = false
return

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

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

1
src/app/system-management/role/role.component.ts

@ -75,7 +75,6 @@ export class RoleComponent implements OnInit {
nzMaskClosable: false,
nzOnOk: async () => {
if (instance.validateForm.valid) {
await new Promise(resolve => {
console.log('表单信息', instance.validateForm)
let arr = []

Loading…
Cancel
Save