@model WX.CRM.Model.Entity.RES_CUSTOMER @using WX.CRM.Model.Entity @using WX.CRM.WebHelper; @using WX.CRM.Model.QueryMap; @using WX.CRM.Model; @using WX.CRM.Model.DTO; @{ Layout = null; CustomerInfo info = ViewBag.CustomerInfo as CustomerInfo; }
客户基本信息 @*收藏客户*@      @*修改客户资料*@
@using (Html.BeginForm("CustomerBaseInfoUC", "CustomerInfo", null, FormMethod.Post, new { Id = "CreateForm", style = "margin:0 0 5px;" })) { @**@
客户ID:@Html.DisplayFor(p => p.RES_CUSTOMERDETAIL.UMID) 注册时间:@Html.DisplayFor(p => p.map_CTIME) 承受风险能力:@Html.DisplayFor(p => p.RES_CUSTOMERDETAIL.RISKTOLERANCE) 资金量:@Html.DisplayFor(p => p.map_AMOUNTTYPEID)
@*姓名:@Html.Raw(string.IsNullOrWhiteSpace(ViewBag.map_CNAME) ? ViewBag.CName : Html.DisplayFor(p => p.map_CNAME))*@ 姓名:@Html.DisplayFor(p => p.map_CNAME) 性别:@Html.DisplayFor(p => p.map_GENDER) 投资经验:@Html.DisplayFor(p => p.map_OpenrationTypeStr) @*股龄:@Html.DisplayFor(p => p.RES_CUSTOMERDETAIL.OPERATIONTIME)*@ 债务情况:@ViewBag.ZaiWu
出生日期:@ViewBag.BirthDay 年龄:@Html.Raw(Html.DisplayFor(p => p.map_BIRTHDAYAREASTR)) 投资期限:@ViewBag.QiXiang 品种:@ViewBag.PinZhong
身份证类型:@ViewBag.IdCardType 证件号码:@ViewBag.IdCard 期望收益及风险偏好:@ViewBag.QiWang 可承受的损失:@ViewBag.ShunShi
学历:@Html.DisplayFor(p => p.map_JOBTYPEID) 国籍:@ViewBag.Nationality 客户标签: @{ var rfm = ViewBag.rfm as ResCustomerRfmDto; if (rfm != null) { if (!string.IsNullOrEmpty(rfm.LableName)) { @rfm.LableName } } var complaint = ViewBag.Complaint as ComplaintLabelDto; if (complaint != null) { if (complaint.InComplaint) { 内诉 } if (complaint.OutComplaint) { 外诉 } } if (rfm != null && !string.IsNullOrEmpty(rfm.AppUserId)) { 变更记录 } } @if (!string.IsNullOrEmpty(Model.RES_CUSTOMERDETAIL.REMARK)) { 备注:@Html.Raw(Model.RES_CUSTOMERDETAIL.REMARK) }
加好友:@Html.Raw(Model.isBound == 1 ? "" : "否")
}