纽威
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.
 
 
 
 
 

143 lines
4.1 KiB

using NFine.Application;
using NFine.Application.SystemManage;
using NFine.Code;
using NFine.Domain.Entity.SystemManage;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Web.Mvc;
namespace NFine.Web.Areas.SystemManage.Controllers
{
public class UserController : ControllerBase
{
private UserApp userApp = new UserApp();
private UserLogOnApp userLogOnApp = new UserLogOnApp();
private UserWorkPointApp app = new UserWorkPointApp();
[HttpGet]
[HandlerAjaxOnly]
public ActionResult GetGridJson(Pagination pagination, string keyword)
{
//userApp.AgentUserAndVenCode();
var data = new
{
rows = userApp.GetList(pagination, keyword),
total = pagination.total,
page = pagination.page,
records = pagination.records
};
return Content(data.ToJson());
}
[HttpGet]
[HandlerAjaxOnly]
public ActionResult GetWorkPoint(string keyword)
{
DataTable ListData = app.GetWorkPoint(keyword);
//var JsonData = new
//{
// rows = ListData,
//};
return Content(ListData.ToJson());
}
[HttpGet]
[HandlerAjaxOnly]
public ActionResult GetFormJson(string keyValue)
{
var data = userApp.GetForm(keyValue);
return Content(data.ToJson());
}
[HttpGet]
[HandlerAjaxOnly]
public ActionResult GetCurrentRole(string keyValue)
{
string RoleFullName = NFine.Code.OperatorProvider.Provider.GetCurrent().UserCode;
var data = new
{
RoleName = RoleFullName
};
return Content(data.ToJson());
}
[HttpPost]
[HandlerAjaxOnly]
[ValidateAntiForgeryToken]
public ActionResult SubmitForm(UserEntity userEntity, UserLogOnEntity userLogOnEntity, string keyValue)
{
userApp.SubmitForm(userEntity, userLogOnEntity, keyValue);
return Success("操作成功。");
}
[HttpPost]
[HandlerAuthorize]
[HandlerAjaxOnly]
[ValidateAntiForgeryToken]
public ActionResult DeleteForm(string keyValue)
{
userApp.DeleteForm(keyValue);
return Success("删除成功。");
}
[HttpGet]
public ActionResult RevisePassword()
{
return View();
}
[HttpPost]
[HandlerAjaxOnly]
[HandlerAuthorize]
[ValidateAntiForgeryToken]
public ActionResult SubmitRevisePassword(string userPassword, string keyValue)
{
userLogOnApp.RevisePassword(userPassword, keyValue);
return Success("重置密码成功。");
}
[HttpPost]
[HandlerAjaxOnly]
public ActionResult SubmitRevisePassword2(string userPassword, string keyValue)
{
userLogOnApp.RevisePassword(userPassword, keyValue);
return Success("重置密码成功。");
}
[HttpPost]
[HandlerAjaxOnly]
[HandlerAuthorize]
[ValidateAntiForgeryToken]
public ActionResult DisabledAccount(string keyValue)
{
UserEntity userEntity = new UserEntity();
userEntity.F_Id = keyValue;
userEntity.F_EnabledMark = false;
userApp.UpdateForm(userEntity);
return Success("账户禁用成功。");
}
[HttpPost]
[HandlerAjaxOnly]
[HandlerAuthorize]
[ValidateAntiForgeryToken]
public ActionResult EnabledAccount(string keyValue)
{
UserEntity userEntity = new UserEntity();
userEntity.F_Id = keyValue;
userEntity.F_EnabledMark = true;
userApp.UpdateForm(userEntity);
return Success("账户启用成功。");
}
[HttpGet]
public ActionResult Info()
{
return View();
}
}
}