2018-09-15 15:50:17 +08:00
|
|
|
|
@model NavigatorBarModel
|
2016-10-20 17:55:29 +08:00
|
|
|
|
@{
|
|
|
|
|
ViewBag.Title = "用户管理";
|
2018-09-18 01:53:20 +08:00
|
|
|
|
Layout = "_Default";
|
2016-10-20 17:55:29 +08:00
|
|
|
|
}
|
2018-09-18 01:53:20 +08:00
|
|
|
|
@section javascript {
|
|
|
|
|
<script src="~/js/users.js" asp-append-version="true"></script>
|
2016-10-20 17:55:29 +08:00
|
|
|
|
}
|
|
|
|
|
@section query {
|
2018-08-02 15:21:41 +08:00
|
|
|
|
<form class="form-inline">
|
2018-09-29 17:08:36 +08:00
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="form-group col-sm-5 col-md-auto">
|
2018-08-03 14:18:05 +08:00
|
|
|
|
<label class="control-label" for="txt_search_name">登陆名称</label>
|
|
|
|
|
<input type="text" class="form-control" id="txt_search_name" />
|
2016-11-09 16:00:15 +08:00
|
|
|
|
</div>
|
2018-09-29 17:08:36 +08:00
|
|
|
|
<div class="form-group col-sm-5 col-md-auto">
|
2018-08-03 14:18:05 +08:00
|
|
|
|
<label class="control-label" for="txt_display_name">显示名称</label>
|
|
|
|
|
<input type="text" class="form-control" id="txt_display_name" />
|
2016-11-09 16:00:15 +08:00
|
|
|
|
</div>
|
2018-09-29 17:08:36 +08:00
|
|
|
|
<div class="form-group col-sm-2 col-md-auto flex-md-fill justify-content-md-end">
|
2018-09-30 18:50:46 +08:00
|
|
|
|
<button type="button" id="btn_query" class="btn btn-primary btn-fill align-self-sm-end align-self-md-auto"><i class="fa fa-search" aria-hidden="true"></i><span>查询</span></button>
|
2016-11-09 16:00:15 +08:00
|
|
|
|
</div>
|
2016-10-20 17:55:29 +08:00
|
|
|
|
</div>
|
2016-11-09 18:36:49 +08:00
|
|
|
|
</form>
|
2016-10-20 17:55:29 +08:00
|
|
|
|
}
|
2016-10-25 18:47:33 +08:00
|
|
|
|
@section toolbar {
|
|
|
|
|
<button id="btn_assignGroup" type="button" class="btn btn-info">
|
2018-08-11 14:56:20 +08:00
|
|
|
|
<span class="fa fa-bank" aria-hidden="true"></span><span>分配部门</span>
|
|
|
|
|
</button>
|
|
|
|
|
<button id="btn_assignRole" type="button" class="btn btn-warning">
|
|
|
|
|
<span class="fa fa-sitemap" aria-hidden="true"></span><span>分配角色</span>
|
2016-10-25 18:47:33 +08:00
|
|
|
|
</button>
|
2018-08-03 17:17:16 +08:00
|
|
|
|
<div class="toolbar btn-group">
|
2018-08-24 16:29:00 +08:00
|
|
|
|
<button class="btn btn-secondary dropdown-toggle" data-toggle="dropdown" type="button"><i class="fa fa-gear"></i></button>
|
2017-01-02 12:45:55 +08:00
|
|
|
|
<div class="dropdown-menu">
|
2018-06-15 16:14:49 +08:00
|
|
|
|
@await Html.PartialAsync("_ButtonBarGroup")
|
2018-08-11 14:56:20 +08:00
|
|
|
|
<a id="tb_assignRole" href="#" title="分配角色"><i class="fa fa-sitemap"></i></a>
|
|
|
|
|
<a id="tb_assignGroup" href="#" title="分配部门"><i class="fa fa-bank"></i></a>
|
2017-01-02 12:45:55 +08:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2016-10-25 18:47:33 +08:00
|
|
|
|
}
|
2016-10-20 17:55:29 +08:00
|
|
|
|
@section modal {
|
2016-10-24 22:16:30 +08:00
|
|
|
|
<div class="modal-header">
|
2018-08-03 13:24:26 +08:00
|
|
|
|
<h5 class="modal-title" id="myModalLabel">用户编辑窗口</h5>
|
2016-10-24 22:16:30 +08:00
|
|
|
|
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="modal-body">
|
2018-08-02 17:59:49 +08:00
|
|
|
|
<form class="form-inline">
|
2018-11-22 10:25:53 +08:00
|
|
|
|
<input type="hidden" id="userID" />
|
2018-09-29 17:08:36 +08:00
|
|
|
|
<div class="row">
|
2017-04-14 13:09:18 +08:00
|
|
|
|
<div class="form-group col-sm-6">
|
2016-11-09 21:56:33 +08:00
|
|
|
|
<label class="control-label" for="userName">登陆名称</label>
|
2018-09-13 16:58:59 +08:00
|
|
|
|
<input type="text" class="form-control" id="userName" placeholder="不可为空,50字以内" minlength="4" maxlength="50" remote="api/Register" data-remote-msg="此用户已存在" data-valid="true" />
|
2016-11-09 21:56:33 +08:00
|
|
|
|
</div>
|
2017-04-14 13:09:18 +08:00
|
|
|
|
<div class="form-group col-sm-6">
|
2018-08-04 14:24:26 +08:00
|
|
|
|
<label class="control-label" for="displayName">显示名称</label>
|
2018-06-07 14:39:45 +08:00
|
|
|
|
<input type="text" class="form-control" id="displayName" placeholder="不可为空,50字以内" maxlength="50" data-valid="true" />
|
2016-11-09 21:56:33 +08:00
|
|
|
|
</div>
|
2017-04-14 13:09:18 +08:00
|
|
|
|
<div class="form-group col-sm-6">
|
2016-11-09 21:56:33 +08:00
|
|
|
|
<label class="control-label" for="password">登录密码</label>
|
2018-06-07 14:39:45 +08:00
|
|
|
|
<input type="password" class="form-control" id="password" placeholder="不可为空,50字以内" maxlength="50" data-valid="true" />
|
2016-11-09 21:56:33 +08:00
|
|
|
|
</div>
|
2017-04-14 13:09:18 +08:00
|
|
|
|
<div class="form-group col-sm-6">
|
2016-11-09 21:56:33 +08:00
|
|
|
|
<label class="control-label" for="confirm">确认密码</label>
|
2018-06-07 14:39:45 +08:00
|
|
|
|
<input type="password" class="form-control" id="confirm" placeholder="与登陆密码一致,50字以内" maxlength="50" equalTo="#password" data-valid="true" />
|
2016-11-09 21:56:33 +08:00
|
|
|
|
</div>
|
2016-10-24 22:16:30 +08:00
|
|
|
|
</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 {
|
2018-06-15 16:14:49 +08:00
|
|
|
|
@await Html.PartialAsync("RoleConfig")
|
|
|
|
|
@await Html.PartialAsync("GroupConfig")
|
2018-09-15 15:50:17 +08:00
|
|
|
|
}
|