@model WX.CRM.Model.Entity.QC_CUSTOMERCOMPLAIN_Extend @using WX.CRM.WebHelper @Styles.Render("~/Content/data_grid_list.css") @{ ViewBag.Title = "客户投诉列表修改"; Layout = "~/Views/Shared/_Index_LayoutEdit.cshtml"; }
@Html.ToolButtonPlain("btnSave", "icon-save", "保存", false, "")
@using (Html.BeginForm("Edit", "Parameter", null, FormMethod.Post, new { Id = "CreateForm" })) { @Html.ValidationSummary(true) @if (Request.QueryString["tag"] != "Add") { }
@Html.LabelFor(m => m.customerComplain.map_RESID) @Html.HiddenFor(m => m.customerComplain.map_PKID) @Html.HiddenFor(m => m.customerComplain.map_STATUS) @if (Request.QueryString["tag"] != "Add") { @Html.HiddenFor(m => m.customerComplain.map_COMPLAINLEVEL) @Html.HiddenFor(m => m.customerComplain.map_FROMTYPE) } @Html.TextBoxFor(m => m.customerComplain.map_RESID, Request.QueryString["tag"] == "Add" ? new object() : new { Readonly = "true" }) @Html.Hidden("hid_tag", Request.QueryString["tag"]) @Html.ValidationMessageFor(m => m.customerComplain.map_RESID)
@Html.LabelFor(m => m.customerComplain.map_FROMTYPE) @Html.DropDownListFor(m => m.customerComplain.map_FROMTYPE, new List() { new SelectListItem() { Text = "电话投诉", Value = "1" }, new SelectListItem() { Text = "微信投诉", Value = "2" } }, Request.QueryString["tag"] == "Add" ? new object { } : new { style = "width:305px", disabled = "disabled" })
@Html.LabelFor(m => m.customerComplain.map_COMPLAINLEVEL) @Html.DropDownListFor(m => m.customerComplain.map_COMPLAINLEVEL, new WX.CRM.WEB.Handler.ControlResource().GetComplainCustomerLevelList(0), Request.QueryString["tag"] == "Add" ? new object { } : new { style = "width:305px", disabled = "disabled" })
@Html.LabelFor(m => m.customerComplain.map_REASON) @Html.TextAreaFor(m => m.customerComplain.map_REASON, Request.QueryString["tag"] == "Add" ? new object() : new { Readonly = "true" }) @Html.ValidationMessageFor(m => m.customerComplain.map_REASON)
服务工单号
录音ID
处理后投诉客户等级
处理结果
@Html.Raw(ViewBag.complainServiceMemoList)
}