From fd9bca23a7e9fa352c70fa88ff123a0efddfa32b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=9B=9B=E8=89=B2=E9=AC=BC?= Date: Thu, 3 Jan 2019 18:35:11 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20AuthorizeApp.cs=20=20Autho?= =?UTF-8?q?riseService.cs=3D>public=20List=20ModuleElements?= =?UTF-8?q?=20=20=20=20=20=20=20=20=20{=20=20=20=20=20=20=20=20=20=20=20?= =?UTF-8?q?=20=20get=20{=20return=20GetModuleElementsQuery().ToList();=20}?= =?UTF-8?q?=20=20=20=20=20=20=20=20=20}=20=20=E4=BC=9A=E5=AF=BC=E8=87=B4?= =?UTF-8?q?=E9=87=8D=E5=A4=8D=E6=9F=A5=E8=AF=A2=E6=95=B0=E6=8D=AE=E5=BA=93?= =?UTF-8?q?=E3=80=82=E5=9C=A8user.Modules=E8=BE=83=E5=A4=9A=E7=9A=84?= =?UTF-8?q?=E6=97=B6=E5=80=99=E5=BD=B1=E5=93=8D=E6=80=A7=E8=83=BD=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- OpenAuth.App/AuthorizeApp.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/OpenAuth.App/AuthorizeApp.cs b/OpenAuth.App/AuthorizeApp.cs index 92498da9..75a5f3dc 100644 --- a/OpenAuth.App/AuthorizeApp.cs +++ b/OpenAuth.App/AuthorizeApp.cs @@ -1,4 +1,4 @@ -using System.Linq; +using System.Linq; using Infrastructure; using OpenAuth.App.Response; using OpenAuth.Repository.Domain; @@ -41,10 +41,12 @@ namespace OpenAuth.App Roles = service.Roles }; + var ModuleElements=service.ModuleElements; + foreach (var moduleView in user.Modules) { moduleView.Elements = - service.ModuleElements.Where(u => u.ModuleId == moduleView.Id).OrderBy(u => u.Sort).ToList(); + ModuleElements.Where(u => u.ModuleId == moduleView.Id).OrderBy(u => u.Sort).ToList(); } return user;