36 lines
1.1 KiB
Plaintext
36 lines
1.1 KiB
Plaintext
@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> |