35 lines
1013 B
Plaintext
35 lines
1013 B
Plaintext
@model BaseOUDAL.Role
|
|
@{
|
|
ViewBag.Title = "角色信息";
|
|
Layout = "~/Views/Shared/_InfoLayout.cshtml";
|
|
}
|
|
@section CSS{
|
|
<style type="text/css">
|
|
.toolbarDiv { border: none !important; }
|
|
</style>
|
|
}
|
|
@section JS{
|
|
<script type="text/javascript">
|
|
function modifyClick(id) {
|
|
main.openMono("修改角色权限", "/system/RoleFunctionEdit/" + id, { area: ['800px', '85%'] });
|
|
}
|
|
</script>
|
|
}
|
|
|
|
<div class="btn-toolbar ui-widget ui-corner-all toolbarDiv">
|
|
<button class="btn btn-white btn-primary " onclick="modifyClick('@(Model.Id)')">
|
|
<span class='glyphicon glyphicon-list'></span> 角色修改
|
|
</button>
|
|
</div>
|
|
|
|
<div class="infoDiv yc-panel">
|
|
@Html.HiddenFor(model => model.Id)
|
|
<table class="table table-bordered">
|
|
<colgroup>
|
|
<col width="80" />
|
|
<col width="200" />
|
|
</colgroup>
|
|
<tr>@Html.MyDisplayFor(m => m.Name)</tr>
|
|
<tr>@Html.MyDisplayFor(m => m.Remark)</tr>
|
|
</table>
|
|
</div> |