46 lines
1.1 KiB
Plaintext
46 lines
1.1 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>
|
|
业务部
|
|
</th>
|
|
<th>
|
|
客户ID
|
|
</th>
|
|
<th>
|
|
收藏人
|
|
</th>
|
|
<th>
|
|
归属人
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@if (list.Count > 0)
|
|
{
|
|
foreach (var item in list)
|
|
{
|
|
<tr>
|
|
<td>@item.deptName</td>
|
|
<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="4">暂无人收藏,无归属</td>
|
|
</tr>
|
|
}
|
|
</tbody>
|
|
</table>
|