2016-10-24 22:10:17 +08:00
|
|
|
@model NavigatorBarModel
|
|
|
|
@{
|
|
|
|
ViewBag.Title = "角色管理";
|
|
|
|
Layout = "~/Views/Shared/_Default.cshtml";
|
|
|
|
}
|
2016-11-07 21:41:17 +08:00
|
|
|
@section css {
|
|
|
|
<link href="~/Content/css/fa.css" rel="stylesheet" />
|
|
|
|
<link href="~/Content/css/jquery.nestable.css" rel="stylesheet" />
|
|
|
|
}
|
2016-10-24 22:10:17 +08:00
|
|
|
@section Javascript {
|
2016-11-07 21:41:17 +08:00
|
|
|
<script src="~/Content/js/jquery.nestable.js"></script>
|
2016-10-24 22:10:17 +08:00
|
|
|
<script src="~/scripts/Roles.js"></script>
|
2016-11-07 21:41:17 +08:00
|
|
|
|
2016-10-24 22:10:17 +08:00
|
|
|
}
|
|
|
|
@section header {
|
|
|
|
@Html.Partial("Header", Model)
|
|
|
|
}
|
|
|
|
@section navigator {
|
|
|
|
@Html.Partial("Navigator", Model)
|
|
|
|
}
|
|
|
|
@section query {
|
|
|
|
<form class="form-inline" role="form">
|
|
|
|
<div class="form-group col-lg-5">
|
|
|
|
<label class="control-label" for="txt_search_name">角色名称</label>
|
|
|
|
<input type="text" class="form-control" id="txt_search_name" />
|
|
|
|
</div>
|
|
|
|
<div class="form-group col-lg-5">
|
2016-10-28 20:18:12 +08:00
|
|
|
<label class="control-label" for="txt_role_desc">角色描述</label>
|
2016-10-24 22:10:17 +08:00
|
|
|
<input type="text" class="form-control" id="txt_role_desc" />
|
|
|
|
</div>
|
|
|
|
<div class="form-group col-lg-2">
|
|
|
|
<button type="button" id="btn_query" class="btn btn-primary"><span class="glyphicon glyphicon-search" aria-hidden="true"></span>查询</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
}
|
2016-10-28 20:18:12 +08:00
|
|
|
@section toolbar{
|
|
|
|
<button id="btn_assignUser" type="button" class="btn btn-info">
|
|
|
|
<span class="fa fa-sitemap" aria-hidden="true"></span>指派用户
|
|
|
|
</button>
|
|
|
|
<button id="btn_assignGroup" type="button" class="btn btn-info">
|
|
|
|
<span class="fa fa-home" aria-hidden="true"></span>指派部门
|
|
|
|
</button>
|
2016-11-07 21:41:17 +08:00
|
|
|
<button id="btn_assignMenu" type="button" class="btn btn-info">
|
|
|
|
<span class="fa fa-home" aria-hidden="true"></span>指派菜单
|
|
|
|
</button>
|
2016-10-28 20:18:12 +08:00
|
|
|
}
|
2016-10-24 22:10:17 +08:00
|
|
|
@section modal {
|
2016-10-24 22:16:30 +08:00
|
|
|
<div class="modal-header">
|
|
|
|
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
|
|
|
<h4 class="modal-title" id="myModalLabel">角色编辑窗口</h4>
|
|
|
|
</div>
|
|
|
|
<div class="modal-body">
|
|
|
|
<form class="form-inline" id="dataForm" name="dataForm" role="form">
|
|
|
|
<div class="form-group col-lg-6">
|
|
|
|
<label class="control-label" for="roleName">角色名称</label>
|
|
|
|
<input type="text" class="form-control" id="roleName" name="roleName" maxlength="50" />
|
|
|
|
</div>
|
|
|
|
<div class="form-group col-lg-6">
|
|
|
|
<label class="control-label" for="roleDesc">角色描述</label>
|
|
|
|
<input type="text" class="form-control" id="roleDesc" name="roleDesc" maxlength="50" />
|
|
|
|
<input type="text" class="form-control hide" id="roleID" name="roleID" />
|
|
|
|
</div>
|
|
|
|
</form>
|
2016-10-24 22:10:17 +08:00
|
|
|
</div>
|
2016-10-28 20:18:12 +08:00
|
|
|
}
|
|
|
|
@section customModal{
|
|
|
|
@Html.Partial("UserConfig")
|
2016-10-29 09:24:55 +08:00
|
|
|
@Html.Partial("GroupConfig")
|
2016-11-07 21:41:17 +08:00
|
|
|
@Html.Partial("NavigatorConfig", Model.Navigations)
|
2016-10-29 09:24:55 +08:00
|
|
|
}
|