2016-10-24 20:53:05 +08:00
|
|
|
@model NavigatorBarModel
|
|
|
|
@{
|
|
|
|
ViewBag.Title = "部门管理";
|
|
|
|
Layout = "~/Views/Shared/_Default.cshtml";
|
|
|
|
}
|
|
|
|
@section Javascript {
|
|
|
|
<script src="~/scripts/Groups.js"></script>
|
|
|
|
}
|
|
|
|
@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">
|
|
|
|
<label class="control-label" for="txt_group_desc">部门描述</label>
|
|
|
|
<input type="text" class="form-control" id="txt_group_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-27 17:56:00 +08:00
|
|
|
@section toolbar {
|
|
|
|
<button id="btn_assignRole" type="button" class="btn btn-info">
|
|
|
|
<span class="fa fa-sitemap" aria-hidden="true"></span>指派角色
|
|
|
|
</button>
|
|
|
|
<button id="btn_assignUser" type="button" class="btn btn-info">
|
|
|
|
<span class="fa fa-home" aria-hidden="true"></span>指派用户
|
|
|
|
</button>
|
|
|
|
}
|
2016-10-24 20:53:05 +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="groupName">部门名称</label>
|
|
|
|
<input type="text" class="form-control" id="groupName" name="groupName" maxlength="50" />
|
|
|
|
</div>
|
|
|
|
<div class="form-group col-lg-6">
|
|
|
|
<label class="control-label" for="groupDesc">部门描述</label>
|
|
|
|
<input type="text" class="form-control" id="groupDesc" name="groupDesc" maxlength="50" />
|
|
|
|
<input type="text" class="form-control hide" id="groupID" name="groupID" />
|
|
|
|
</div>
|
|
|
|
</form>
|
2016-10-24 20:53:05 +08:00
|
|
|
</div>
|
2016-10-27 17:56:00 +08:00
|
|
|
}
|
|
|
|
@section customModal {
|
|
|
|
@Html.Partial("RoleConfig")
|
2016-10-29 17:38:23 +08:00
|
|
|
@Html.Partial("UserConfig")
|
2016-10-24 20:53:05 +08:00
|
|
|
}
|