105 lines
2.4 KiB
C#
105 lines
2.4 KiB
C#
using Microsoft.AspNetCore.Mvc;
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.IO;
|
||
using System.Threading.Tasks;
|
||
using HT.Cloud.Code;
|
||
using HT.Cloud.Code.Model;
|
||
using HT.Cloud.Domain.SystemManage;
|
||
using HT.Cloud.Service.SystemManage;
|
||
|
||
namespace HT.Cloud.Web.Areas.SystemManage.Controllers
|
||
{
|
||
/// <summary>
|
||
/// 创 建:超级管理员
|
||
/// 日 期:2020-07-08 14:33
|
||
/// 描 述:表单设计控制器类
|
||
/// </summary>
|
||
[Area("SystemManage")]
|
||
public class FormController : BaseController
|
||
{
|
||
public FormService _service { get; set; }
|
||
|
||
#region 获取数据
|
||
|
||
[HttpGet]
|
||
[HandlerAjaxOnly]
|
||
public async Task<ActionResult> GetGridJson(string ItemId, string keyword)
|
||
{
|
||
var data = await _service.GetLookList(ItemId, keyword);
|
||
return Success(data.Count, data);
|
||
}
|
||
|
||
[HttpGet]
|
||
[HandlerAjaxOnly]
|
||
public async Task<ActionResult> GetListJson(string keyword)
|
||
{
|
||
var data = await _service.GetList(keyword);
|
||
return Content(data.ToJson());
|
||
}
|
||
|
||
[HttpGet]
|
||
[HandlerAjaxOnly]
|
||
public async Task<ActionResult> GetExtendForm(string keyword)
|
||
{
|
||
return await Task.Run(() =>
|
||
{
|
||
string filePath = GlobalContext.HostingEnvironment.WebRootPath + $@"/form/";
|
||
DirectoryInfo root = new DirectoryInfo(filePath);
|
||
List<AppLogEntity> list = new List<AppLogEntity>();
|
||
foreach (FileInfo f in root.GetFiles())
|
||
{
|
||
AppLogEntity app = new AppLogEntity();
|
||
app.FileName = f.Name.Remove(f.Name.Length - 5, 5); ;
|
||
list.Add(app);
|
||
}
|
||
return Content(list.ToJson());
|
||
});
|
||
}
|
||
|
||
[HttpGet]
|
||
[HandlerAjaxOnly]
|
||
public async Task<ActionResult> GetFormJson(string keyValue)
|
||
{
|
||
var data = await _service.GetLookForm(keyValue);
|
||
return Content(data.ToJson());
|
||
}
|
||
|
||
#endregion 获取数据
|
||
|
||
#region 提交数据
|
||
|
||
[HttpPost]
|
||
[HandlerAjaxOnly]
|
||
public async Task<ActionResult> SubmitForm(FormEntity entity, string keyValue)
|
||
{
|
||
try
|
||
{
|
||
await _service.SubmitForm(entity, keyValue);
|
||
return await Success("操作成功。", "", keyValue);
|
||
}
|
||
catch (Exception ex)
|
||
{
|
||
return await Error(ex.Message, "", keyValue);
|
||
}
|
||
}
|
||
|
||
[HttpPost]
|
||
[HandlerAjaxOnly]
|
||
[HandlerAuthorize]
|
||
public async Task<ActionResult> DeleteForm(string keyValue)
|
||
{
|
||
try
|
||
{
|
||
await _service.DeleteForm(keyValue);
|
||
return await Success("操作成功。", "", keyValue, DbLogType.Delete);
|
||
}
|
||
catch (Exception ex)
|
||
{
|
||
return await Error(ex.Message, "", keyValue, DbLogType.Delete);
|
||
}
|
||
}
|
||
|
||
#endregion 提交数据
|
||
}
|
||
} |