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

36 lines
1.1 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@model Air.Model.AirAdminViewModel.Bas_RightModel
@{
ViewBag.Title = "Details";
Layout = "~/Areas/Admin/Views/Shared/_Index_LayoutEdit.cshtml";
}
<div class="mvctool bgb">
<table class="fromEditTable setTextWidth300">
<tr>
<td style=" width:100px;">权限Id</td>
<td>@Html.DisplayFor(model => model.RightId)</td>
</tr>
<tr>
<td style=" width:100px;">权限名:</td>
<td>@Html.DisplayFor(model => model.RName)</td>
</tr>
<tr>
<td style=" width:100px;">权限组:</td>
<td>@Html.DisplayTextFor(model => model.GroupId)</td>
</tr>
<tr>
<td style=" width:100px;">排序:</td>
<td>@Html.DisplayTextFor(model => model.SortId)</td>
</tr>
<tr>
<td style=" width:100px;">添加时间:</td>
<td>@Html.DisplayFor(model => model.CTime)</td>
</tr>
<tr>
<td style=" width:100px;">添加人:</td>
<td>
@Html.DisplayFor(model => model.CreateUser)
</td>
</tr>
</table>
</div>