@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; }
| 客户ID:@Html.DisplayFor(p => p.UMID) | 最后登陆时间:@Html.DisplayFor(p => p.RES_CUSTOMERDETAIL.ZX_USERID) | 股票:@Html.DisplayFor(p => p.RES_CUSTOMERDETAIL.GUPIAO) | 承受风险能力:@Html.DisplayFor(p => p.RES_CUSTOMERDETAIL.RISKTOLERANCE) |
| @*姓名:@Html.DisplayFor(p => p.map_CNAME)*@ 姓名:@Html.Raw(string.IsNullOrWhiteSpace(ViewBag.CName)? Html.DisplayFor(p => p.map_CNAME) : ViewBag.CName) | 客户分类:@Html.DisplayFor(p => p.RES_CUSTOMERDETAIL.CUSTOMERCATEGORY) | 股龄:@Html.DisplayFor(p => p.RES_CUSTOMERDETAIL.OPERATIONTIME) | 操作风格:@Html.DisplayFor(p => p.map_OpenrationTypeStr) |
| @*年龄:@Html.DisplayFor(p => p.map_BIRTHDAYAREASTR)*@ 年龄:@Html.Raw(string.IsNullOrWhiteSpace(ViewBag.Age) ? Html.DisplayFor(p => p.map_BIRTHDAYAREASTR) : ViewBag.Age) |
客户标签:
@{
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)
{
外诉
}
}
var complaintId = (int)ViewBag.ComplaintId;
if (complaintId > 0)
{
潜在风险
}
if (rfm != null && !string.IsNullOrEmpty(rfm.AppUserId))
{
变更记录
}
var ResTag = (List |
资金量:@Html.DisplayFor(p => p.map_AMOUNTTYPEID) 设置 | 产品版本:@Html.DisplayFor(p => p.map_OrderStr) |
| @*性别:@Html.DisplayFor(p => p.map_GENDER)*@ 性别:@Html.Raw(string.IsNullOrWhiteSpace(ViewBag.Genger) ? Html.DisplayFor(p => p.map_GENDER) : ViewBag.Genger) | 注册时间:@Html.DisplayFor(p => p.map_CTIME) | 盈亏情况:@Html.DisplayFor(p => p.RES_CUSTOMERDETAIL.PROFITANDLOSS) | |
| 职业:@Html.DisplayFor(p => p.map_JOBTYPEID) | 最后跟进人员:@Html.DisplayFor(p => p.map_LastSericeStaff) | 仓位情况:@Html.DisplayFor(p => p.RES_CUSTOMERDETAIL.STOCKPOSITION) | 地址:@Html.DisplayFor(p => p.map_ADDRESS_ALL) |
| 收藏分类:@Html.Raw(ViewBag.FavoritesCustType) | 加好友:@Html.Raw(Model.isBound == 1 ? "是" : "否") | 身份证地区:@ViewBag.IdCardAddr | @{ var quda = DataCacheHelper.GetCache().GetList_SubComType(WX.CRM.Model.Enum.ComType.CustomerType); var entry = quda.FirstOrDefault(m => m.SUBTYPECODE == Model.map_CUSTOMERTYPEID); var laiyuan = (entry == null ? "空" : entry.SUBTYPENAME); } 渠道来源:@Html.Raw(laiyuan) |
| 客户类型:@Html.Raw(Model.TYPE == 2 || Model.TYPE == 3 ? "企微客户" : "手机号客户") | 是否注册:@Html.Raw(ViewBag.register == true ? "是" : "否") | IP访问地区:@ViewBag.IpAddr | @if (!string.IsNullOrEmpty(Model.RES_CUSTOMERDETAIL.REMARK)) { 备注:@Html.Raw(Model.RES_CUSTOMERDETAIL.REMARK) } |