ComplianceServer/oldcode/WEB/Views/Res/SalesGroup/Details.cshtml

17 lines
454 B
Plaintext

@model WX.CRM.Model.Entity.RES_SALESGROUP
@{
ViewBag.Title = "详细信息";
Layout = "~/Views/Shared/_Index_LayoutEdit.cshtml";
}
<table class="fromEditTable setTextWidth300">
<tr>
<td style="width:120px;">客服资源分组名称</td>
<td>@Html.DisplayFor(model => model.NAME)</td>
</tr>
<tr>
<td style="width:120px;">备注</td>
<td>@Html.DisplayFor(model => model.MEMO)</td>
</tr>
</table>