TG.WXCRM.V4/WEB/Views/Csvr/CustomerRelation/Details.cshtml

39 lines
1.2 KiB
Plaintext

@model System.Collections.Generic.IEnumerable<WX.CRM.Model.Entity.CSVR_UNITECUSTOMERAPPLYDETAIL>
@{
ViewBag.Title = "详细信息";
}
<link href="~/Content/main.css" rel="stylesheet" />
<div class="content_div" style="width:100%;">
<table class="layui-table" style="width:100%;">
<thead>
<tr>
<td width="35%" style="text-align:center;font-weight:bold">
客户ID
</td>
<td width="35%" style="text-align: center; font-weight: bold">
原客户ID
</td>
<td width="30%" style="text-align: center; font-weight: bold">
新客户ID
</td>
</tr>
<tr></tr>
</thead>
<tbody>
@foreach (var item in Model)
{
<tr>
<td style="text-align:center">
@item.map_RESID
</td>
<td style="text-align:center">
@item.map_OLDCUSTOMERID
</td>
<td style="text-align:center">@item.map_NEWCUSTOMERID</td>
</tr>
}
</tbody>
</table>
</div>