ComplianceServer/oldcode/WEB/Views/Csvr/FavoriteCustomer/FavoriteAndMyRes.cshtml

42 lines
1.0 KiB
Plaintext

@{
ViewBag.Title = "收藏和归属";
Layout = "~/Views/Shared/_Index_LayoutEdit.cshtml";
}
@{ List<WX.CRM.Model.Entity.CSVR_FAVORITECUSTOMER_AndMyRes> list = (List<WX.CRM.Model.Entity.CSVR_FAVORITECUSTOMER_AndMyRes>)ViewBag.DataList;
}
<table class="layui-table">
<thead>
<tr>
<th>
客户ID
</th>
<th>
收藏人
</th>
<th>
归属人
</th>
</tr>
</thead>
<tbody>
@if (list.Count > 0)
{
foreach (var item in list)
{
<tr>
<td>@item.resid</td>
<td>@(string.IsNullOrEmpty(item.fauserStr)?"--":item.fauserStr) </td>
<td>@(string.IsNullOrEmpty(item.myuserStr)?"--":item.myuserStr)</td>
</tr>
}
}
else
{
<tr>
<td colspan="3">暂无人收藏,无归属</td>
</tr>
}
</tbody>
</table>