TG.WXCRM.V4/WEB/Views/Base/Right/Details.cshtml

36 lines
1.3 KiB
Plaintext

@model WX.CRM.Model.Entity.BAS_RIGHT
@{
ViewBag.Title = "详细信息";
Layout = "~/Views/Shared/_Index_LayoutEdit.cshtml";
}
<div class="mvctool bgb">
<table class="fromEditTable setTextWidth300">
<tr>
<td style=" width:100px;">@Html.LabelFor(model => model.map_RightId)</td>
<td>@Html.DisplayFor(model => model.map_RightId)</td>
</tr>
<tr>
<td style=" width:100px;">@Html.LabelFor(model => model.map_RNAME)</td>
<td>@Html.DisplayFor(model => model.RNAME)</td>
</tr>
<tr>
<td style=" width:100px;">@Html.LabelFor(model => model.map_PKID)</td>
<td>@Html.DisplayTextFor(model => model.map_PKID)</td>
</tr>
<tr>
<td style=" width:100px;">@Html.LabelFor(model => model.map_SORTID)</td>
<td>@Html.DisplayTextFor(model => model.map_SORTID)</td>
</tr>
<tr>
<td style=" width:100px;">@Html.LabelFor(model => model.CTIME)</td>
<td>@Html.DisplayFor(model => model.CTIME)</td>
</tr>
<tr>
<td style=" width:100px;">@Html.LabelFor(model => model.CREATEUSER)</td>
<td>
@Html.DisplayFor(model => model.CREATEUSER)
</td>
</tr>
</table>
</div>