@{ 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_SYSTEM @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.NAME, new { @class = "form-control", @placeholder = "请输入系统名称", @datatype = "*", @nullmsg = "请输入系统名称!", @errormsg = "请输入系统名称!" })
@Html.TextBoxFor(p => p.SITEURL, new { @class = "form-control", @placeholder = "请输入系统地址" })
@Html.TextBoxFor(p => p.DOCKUSER, new { @class = "form-control", @placeholder = "请输入对接用户名" })
@Html.PasswordFor(p => p.DOCKPASS, new { @class = "form-control", @placeholder = "请输入对接密码,DES加密" })
@Html.TextAreaFor(p => p.REMARK, new { @class = "form-control", @rows = "3", @cols = "20",@maxlength="1000", @placeholder = "请输入系统备注" })
} @section scripts{ }