完成分类列表处理

This commit is contained in:
yubaolee
2016-10-14 17:03:18 +08:00
parent 9606a71f72
commit 7f7c0f891a
14 changed files with 710 additions and 288 deletions

View File

@@ -54,12 +54,12 @@ namespace OpenAuth.Mvc.Controllers
}
return JsonHelper.Instance.Serialize(Result);
}
public string Delete(Guid Id)
[HttpPost]
public string Delete(Guid[] ids)
{
try
{
_app.Delete(Id);
_app.Delete(ids);
}
catch (Exception e)
{