mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-11-09 10:54:46 +08:00
routine update
This commit is contained in:
@@ -117,7 +117,7 @@ namespace OpenAuth.Mvc.Areas.FlowManage.Controllers
|
||||
/// <returns></returns>
|
||||
[HttpPost]
|
||||
[ValidateAntiForgeryToken]
|
||||
public ActionResult RemoveForm(string keyValue)
|
||||
public ActionResult RemoveForm(Guid keyValue)
|
||||
{
|
||||
wfFlowInfoBLL.RemoveForm(keyValue);
|
||||
return Content("删除成功。");
|
||||
|
||||
@@ -100,6 +100,17 @@ namespace OpenAuth.Mvc.Areas.FlowManage.Controllers
|
||||
var data = wfFrmMainBLL.GetForm(keyValue);
|
||||
return Content(data.ToJson());
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 获取表单数据all
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
[HttpGet]
|
||||
public ActionResult GetAllListJson()
|
||||
{
|
||||
var data = wfFrmMainBLL.GetAllList();
|
||||
return Content(data.ToJson());
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region 提交数据
|
||||
|
||||
Reference in New Issue
Block a user