完成用户列表/资源列表改造

This commit is contained in:
yubaolee
2016-10-15 01:27:39 +08:00
parent 62f3885380
commit 43c44d30af
16 changed files with 509 additions and 469 deletions

View File

@@ -50,15 +50,12 @@ namespace OpenAuth.Mvc.Controllers
return JsonHelper.Instance.Serialize(_app.Load(orgId, pageCurrent, pageSize));
}
public string Delete(Guid Id)
[HttpPost]
public string Delete(Guid[] ids)
{
try
{
_app.Delete(Id);
//foreach (var obj in Id.Split(','))
//{
// _app.Delete(int.Parse(obj));
//}
_app.Delete(ids);
}
catch (Exception e)
{