ソースを参照

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

zqbao 9 ヶ月 前
コミット
0fcf5f2e07
1 ファイル変更2 行追加5 行削除
  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