@model WX.CRM.Model.Entity.RES_CUSTOMER_BEST @using System.Web.UI.WebControls @using WX.CRM.WEB.Areas.Res.Controllers @using WX.CRM.WebHelper; @using WX.CRM.Model @{ ViewBag.Title = "编辑"; Layout = "~/Views/Shared/_Index_LayoutEdit.cshtml"; }
@Html.ToolButtonPlain("btnSave", "icon-save", "保存", false, "")
@using (Html.BeginForm("Edit", "Customer", null, FormMethod.Post, new { Id = "CreateForm" })) { @Html.ValidationSummary(true) @if (!Model.CREATEID.HasValue) { } else { }
客户Id@Html.TextBoxFor(c => c.RESID) @Html.TextBoxFor(c => c.CREATEID)@Html.TextBoxFor(c => c.RESID, new Dictionary { { "lay-verify", "required" }, { "lay-reqtext", "客户不可为空!" }, { "autocomplete","off" }, { "readonly","readonly" }, }) @Html.TextBoxFor(c => c.CREATEID)
备注 @Html.TextAreaFor(m => m.REMARK, new { style = "height:30px" })
}