@model WX.CRM.Model.Entity.RES_CUSTOMERDETAIL
@using System.Web.UI.WebControls
@using WX.CRM.WEB.Areas.Res.Controllers
@using WX.CRM.WebHelper;
@{
ViewBag.Title = "编辑";
Layout = "~/Views/Shared/_Index_LayoutEdit.cshtml";
}
@Html.ToolButtonPlain("btnSave", "icon-save", "保存", false, "")
@using (Html.BeginForm("Edit", "OrderCustomerVisit", null, FormMethod.Post, new { Id = "CreateForm" }))
{
@Html.ValidationSummary(true)
| 状态 |
@Html.DropDownListFor(c => c.VISITSTATUS, new List() { new SelectListItem() { Text = "", Value = "" }, new SelectListItem() { Text = "未回访", Value = "0" }, new SelectListItem() { Text = "已回访", Value = "1" }, new SelectListItem() { Text = "回访中", Value = "2" } }) |
@Html.HiddenFor(c => c.RESID) |
| 备注 |
@Html.TextAreaFor(c => c.VISITREMARK, 5, 50, new { }) |
|
}