纽威
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

68 lines
1.8 KiB

using NFine.Application.SystemManage;
using NFine.Code;
using NFine.Domain.Entity.SystemManage;
using System.Collections.Generic;
using System.Linq;
using System.Web.Mvc;
namespace NFine.Web.Areas.SystemManage.Controllers
{
public class CustomerController : ControllerBase
{
private CustomerApp cusApp = new CustomerApp();
[HttpGet]
[HandlerAjaxOnly]
public ActionResult GetGridJson(Pagination pagination, string keyword)
{
var data = new
{
rows = cusApp.GetList(pagination, keyword),
total = pagination.total,
page = pagination.page,
records = pagination.records
};
return Content(data.ToJson());
}
[HttpGet]
[HandlerAjaxOnly]
public ActionResult GetFormJson(string keyValue)
{
var data = cusApp.GetForm(keyValue);
return Content(data.ToJson());
}
public ActionResult GetFormJsonCus()
{
var data = cusApp.GetListCus();
return Content(data.ToJson());
}
[HttpPost]
[HandlerAjaxOnly]
[ValidateAntiForgeryToken]
public ActionResult SubmitForm(CustomerEntity cusEntity, string keyValue)
{
cusApp.SubmitForm(cusEntity, keyValue);
return Success("操作成功。");
}
[HttpPost]
[HandlerAuthorize]
[HandlerAjaxOnly]
[ValidateAntiForgeryToken]
public ActionResult DeleteForm(string keyValue)
{
cusApp.DeleteForm(keyValue);
return Success("删除成功。");
}
[HttpGet]
public ActionResult Info()
{
return View();
}
}
}