Mini.Crm/Mini.Web/Areas/Admin/Views/Role/Details.cshtml

40 lines
1.4 KiB
Plaintext

@model Mini.Model.Entity.Bas_Role
@{
ViewBag.Title = "Details";
Layout = "~/Areas/Admin/Views/Shared/_Index_LayoutEdit.cshtml";
}
<div class="mvctool bgb">
<table class="fromEditTable setTextWidth300">
<tr>
<td style=" width:100px;">@Html.LabelFor(model => model.RoleId)</td>
<td>@Html.DisplayFor(model => model.RoleId)</td>
</tr>
<tr>
<td style=" width:100px;">@Html.LabelFor(model => model.RName)</td>
<td>@Html.DisplayFor(model => model.RName)</td>
</tr>
<tr>
<td style=" width:100px;">@Html.LabelFor(model => model.SortId)</td>
<td>@Html.DisplayFor(model => model.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>
<tr>
<td style=" width:100px;">@Html.LabelFor(model => model.UTime)</td>
<td>@Html.DisplayFor(model => model.UTime)</td>
</tr>
<tr>
<td style=" width:100px;">@Html.LabelFor(model => model.UpdateUser)</td>
<td>@Html.DisplayFor(model => model.UpdateUser)</td>
</tr>
</table>
</div>