@{ ViewBag.Title = "Detail"; Layout = "~/Views/Shared/_Layout.cshtml"; } @using MES.Production.Service; @using Central.Control.Domain; @using Ant.Service.Common; @using Ant.Service.Common.Enums; @model SYS_ROLE @using (Ajax.BeginForm("Save", null, new AjaxOptions() { HttpMethod = "Post", OnBegin = "SubAjax.Loading", OnComplete = "SubAjax.Complate", OnFailure = "SubAjax.Failure", OnSuccess = "SubAjax.Success" }, new { @class = "form-horizontal dig-from", @role = "form" })) {
@Html.HiddenFor(p => p.ID) @Html.TextBoxFor(p => p.ROLENAME, new { @class = "form-control", @id = "rolename", @placeholder = "请输入角色名称", @datatype = "*", @nullmsg = "请输入角色名称!", @errormsg = "请输入角色名称!" })
@Html.TextAreaFor(p => p.ROLEDESC, new { @class = "form-control" ,@rows="3", @cols="20" })
} @section scripts{ }