| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- <%@ page contentType="text/html;charset=UTF-8" %>
- <%@ include file="/webpage/include/taglib.jsp"%>
- <html>
- <head>
- <title>用户管理</title>
- <meta http-equiv="Content-type" content="text/html; charset=utf-8">
- <meta name="decorator" content="ani"/>
- <%@ include file="/webpage/include/bootstraptable.jsp"%>
- <%@include file="/webpage/include/treeview.jsp" %>
- <%@include file="hpUserList.js" %>
- <style>
- .table-striped > tbody > tr {
- height: 40px;
- }
- .well {
- min-height: 20px;
- padding: 16px;
- margin-bottom: 8px;
- background-color: #f5f5f5;
- border: 1px solid #e3e3e3;
- border-radius: 0px;
- }
- .form-horizontal {
- margin: 0 10px;
- }
- </style>
- </head>
- <body>
- <div class="wrapper wrapper-content">
- <div class="panel panel-primary">
- <%--<div class="panel-heading">--%>
- <%--<h3 class="panel-title">求职用户列表</h3>--%>
- <%--</div>--%>
- <div class="panel-body">
-
- <!-- 搜索 -->
- <div id="search-collapse" class="collapse">
- <div class="accordion-inner">
- <form:form id="searchForm" modelAttribute="hpMember" class="form form-horizontal well clearfix">
- <div class="col-xs-12 col-sm-4 col-md-2">
- <label class="label-item single-overflow pull-left" title="手机:">手机:</label>
- <form:input path="phone" htmlEscape="false" maxlength="64" class=" form-control input-sm" placeholder="手机号"/>
- </div>
- <div class="col-xs-12 col-sm-4 col-md-2">
- <label class="label-item single-overflow pull-left" title="注册途径:">注册途径:</label>
- <form:select path="hpUser.registerType" class="form-control m-b input-sm">
- <form:option value="" label="全部"/>
- <form:options items="${fns:getDictList('register_type')}" itemLabel="label" itemValue="value" htmlEscape="false"/>
- </form:select>
- </div>
- <div class="col-xs-12 col-sm-4 col-md-2">
- <label class="label-item single-overflow pull-left" title="是否锁定:">是否锁定:</label>
- <form:select path="hpUser.useFlag" class="form-control m-b input-sm">
- <form:option value="" label="全部"/>
- <form:options items="${fns:getDictList('use_flag')}" itemLabel="label" itemValue="value" htmlEscape="false"/>
- </form:select>
- </div>
- <div class="col-xs-12 col-sm-6 col-md-4">
- <div class="form-group">
- <label class="label-item single-overflow pull-left" title="注册时间:"> 注册时间:</label>
- <div class="col-xs-12">
- <div class="col-xs-12 col-sm-5">
- <div class='input-group date' id='beginCreateDate' style="left: -10px;" >
- <input type='text' name="hpUser.beginCreateDate" class="form-control input-sm" placeholder="创建开始时间之后数据" value=""/>
- <span class="input-group-addon">
- <span class="glyphicon glyphicon-calendar"></span>
- </span>
- </div>
- </div>
- <div class="col-xs-12 col-sm-1">
- ~
- </div>
- <div class="col-xs-12 col-sm-5">
- <div class='input-group date' id='endCreateDate' style="left: -10px;" >
- <input type='text' name="hpUser.endCreateDate" class="form-control input-sm" placeholder="创建结束时间之前数据"/>
- <span class="input-group-addon">
- <span class="glyphicon glyphicon-calendar"></span>
- </span>
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="col-xs-12 col-sm-3 col-md-2">
- <label class="label-item single-overflow pull-left" title="认证状态:">认证状态:</label>
- <form:select path="authenticationStatus" class="form-control m-b input-sm">
- <form:option value="" label="全部"/>
- <form:options items="${fns:getDictList('authentication_status')}" itemLabel="label" itemValue="value" htmlEscape="false"/>
- </form:select>
- </div>
- <div class="col-xs-12 col-sm-3 col-md-2">
- <div style="margin-top:26px;margin-left: 10px">
- <a id="search" class="btn btn-primary btn-rounded btn-bordered btn-sm"><i class="fa fa-search"></i> 查询</a>
- <a id="reset" class="btn btn-primary btn-rounded btn-bordered btn-sm" ><i class="fa fa-refresh"></i> 重置</a>
- </div>
- </div>
- </form:form>
- </div>
- </div>
- <!-- 工具栏 -->
- <div id="toolbar">
- <shiro:hasPermission name="sys:hpMember:export">
- <button id="export" class="btn btn-warning">
- <i class="fa fa-file-excel-o"></i> 导出用户
- </button>
- </shiro:hasPermission>
- </div>
- <!-- 表格 -->
- <table id="hpUserTable" data-toolbar="#toolbar"></table>
- </div>
- </div>
- </div>
- <div class="modal fade xcConfirm" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true" id="modal" data-backdrop="static" style="margin-top: 80px;">
- <div class="modal-dialog modal-lg" style="width: 420px;">
- <div class="modal-content" style="border-radius: 6px;">
- <div class="modal-header">
- <button data-dismiss="modal" class="close" type="button">x</button>
- <div class="modal-title">
- 用户二维码
- </div>
- </div>
- <div class="modal-body" align="center">
- <img src="" id="qrcode" style="text-align:center; width:250px;height:240px;">
- </div>
- </div>
- </div>
- </div>
- </body>
- </html>
|