2016-10-23 15:46:18 +08:00
|
|
|
@model NavigatorBarModel
|
2016-10-20 17:55:29 +08:00
|
|
|
@{
|
|
|
|
ViewBag.Title = "用户管理";
|
|
|
|
Layout = "~/Views/Shared/_Default.cshtml";
|
|
|
|
}
|
|
|
|
@section Javascript {
|
|
|
|
<script src="~/scripts/Users.js"></script>
|
|
|
|
}
|
|
|
|
@section header {
|
2016-10-21 16:35:26 +08:00
|
|
|
@Html.Partial("Header", Model)
|
2016-10-20 17:55:29 +08:00
|
|
|
}
|
|
|
|
@section navigator {
|
2016-10-21 16:35:26 +08:00
|
|
|
@Html.Partial("Navigator", Model)
|
2016-10-20 17:55:29 +08:00
|
|
|
}
|
|
|
|
@section query {
|
2016-10-24 13:43:11 +08:00
|
|
|
<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_display_name">显示名称</label>
|
|
|
|
<input type="text" class="form-control" id="txt_display_name" />
|
|
|
|
</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>
|
2016-10-20 17:55:29 +08:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
}
|
2016-10-25 18:47:33 +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_assignGroup" type="button" class="btn btn-info">
|
|
|
|
<span class="fa fa-home" aria-hidden="true"></span>指派部门
|
|
|
|
</button>
|
|
|
|
}
|
2016-10-20 17:55:29 +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="userName">登陆名称</label>
|
|
|
|
<input type="text" class="form-control" id="userName" name="userName" maxlength="50" />
|
|
|
|
</div>
|
|
|
|
<div class="form-group col-lg-6">
|
|
|
|
<label class="control-label" for="userName">显示名称</label>
|
|
|
|
<input type="text" class="form-control" id="displayName" name="displayName" maxlength="50" />
|
|
|
|
<input type="text" class="form-control hide" id="userID" name="userID" />
|
|
|
|
</div>
|
|
|
|
<div class="form-group col-lg-6">
|
|
|
|
<label class="control-label" for="password">登录密码</label>
|
|
|
|
<input type="password" class="form-control" id="password" name="password" maxlength="15" />
|
|
|
|
</div>
|
|
|
|
<div class="form-group col-lg-6">
|
|
|
|
<label class="control-label" for="confirm">确认密码</label>
|
|
|
|
<input type="password" class="form-control" id="confirm" name="confirm" maxlength="15" />
|
|
|
|
</div>
|
|
|
|
</form>
|
2016-10-20 17:55:29 +08:00
|
|
|
</div>
|
2016-10-25 18:47:33 +08:00
|
|
|
}
|
2016-10-27 14:33:34 +08:00
|
|
|
@section customModal {
|
2016-10-25 18:47:33 +08:00
|
|
|
@Html.Partial("RoleConfig")
|
2016-10-28 21:46:48 +08:00
|
|
|
@Html.Partial("GroupConfig")
|
2016-10-25 18:47:33 +08:00
|
|
|
}
|