@using WX.CRM.WebHelper; @using WX.CRM.Model @{ Layout = null; }
客户质检信息 提交投诉 @if (ViewBag.isHasAddFXRole == "1") { 标记风险客户 } @*取消风险客户*@
@using (Html.BeginForm("CustomerCheckUC", "CustomerInfo", null, FormMethod.Post, new { Id = "CreateForm" })) { var item2 = ViewBag.customerComplain as List; if (item2 != null) { @if (ViewBag.isSH) { } @foreach (var m in item2) { @if (ViewBag.isSH) { } else { } @if (ViewBag.isSH) { } }
客户投诉 投诉级别 投诉时间 状态投诉内容  
@m.customerComplain.RESID @m.LEVELNAME @m.LEVELNAME @m.customerComplain.CTIME.Value.ToString("yyyy-MM-dd") @(m.customerComplain.STATUS == 1 ? "已处理" : (m.customerComplain.STATUS == 0 ? "处理中" : "未处理")) @(!string.IsNullOrWhiteSpace(m.customerComplain.REASON) ? (m.customerComplain.REASON.Length > 30 ? m.customerComplain.REASON.Substring(1, 30) + "..." : m.customerComplain.REASON) : "") 投诉明细 处理明细
} }