Sfoglia il codice sorgente

fix:显示共有权限和私有权限

zqbao 9 mesi fa
parent
commit
0fcf5f2e07
1 ha cambiato i file con 2 aggiunte e 5 eliminazioni
  1. 2 5
      controllers/user.go

+ 2 - 5
controllers/user.go

@@ -579,12 +579,9 @@ func (this *UserAuthController) PermissionList() {
 			}
 		}
 	}
-	if len(privateView) == 0 {
-		br.Data = publicView
-	} else {
-		br.Data = privateView
-	}
 
+	publicView = append(publicView, privateView...)
+	br.Data = publicView
 	br.Msg = "查询成功"
 	br.Success = true
 	br.Ret = 200