hpUserList.jsp 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. <%@ page contentType="text/html;charset=UTF-8" %>
  2. <%@ include file="/webpage/include/taglib.jsp"%>
  3. <html>
  4. <head>
  5. <title>用户管理</title>
  6. <meta http-equiv="Content-type" content="text/html; charset=utf-8">
  7. <meta name="decorator" content="ani"/>
  8. <%@ include file="/webpage/include/bootstraptable.jsp"%>
  9. <%@include file="/webpage/include/treeview.jsp" %>
  10. <%@include file="hpUserList.js" %>
  11. <style>
  12. .table-striped > tbody > tr {
  13. height: 40px;
  14. }
  15. .well {
  16. min-height: 20px;
  17. padding: 16px;
  18. margin-bottom: 8px;
  19. background-color: #f5f5f5;
  20. border: 1px solid #e3e3e3;
  21. border-radius: 0px;
  22. }
  23. .form-horizontal {
  24. margin: 0 10px;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <div class="wrapper wrapper-content">
  30. <div class="panel panel-primary">
  31. <%--<div class="panel-heading">--%>
  32. <%--<h3 class="panel-title">求职用户列表</h3>--%>
  33. <%--</div>--%>
  34. <div class="panel-body">
  35. <!-- 搜索 -->
  36. <div id="search-collapse" class="collapse">
  37. <div class="accordion-inner">
  38. <form:form id="searchForm" modelAttribute="hpMember" class="form form-horizontal well clearfix">
  39. <div class="col-xs-12 col-sm-4 col-md-2">
  40. <label class="label-item single-overflow pull-left" title="手机:">手机:</label>
  41. <form:input path="phone" htmlEscape="false" maxlength="64" class=" form-control input-sm" placeholder="手机号"/>
  42. </div>
  43. <div class="col-xs-12 col-sm-4 col-md-2">
  44. <label class="label-item single-overflow pull-left" title="注册途径:">注册途径:</label>
  45. <form:select path="hpUser.registerType" class="form-control m-b input-sm">
  46. <form:option value="" label="全部"/>
  47. <form:options items="${fns:getDictList('register_type')}" itemLabel="label" itemValue="value" htmlEscape="false"/>
  48. </form:select>
  49. </div>
  50. <div class="col-xs-12 col-sm-4 col-md-2">
  51. <label class="label-item single-overflow pull-left" title="是否锁定:">是否锁定:</label>
  52. <form:select path="hpUser.useFlag" class="form-control m-b input-sm">
  53. <form:option value="" label="全部"/>
  54. <form:options items="${fns:getDictList('use_flag')}" itemLabel="label" itemValue="value" htmlEscape="false"/>
  55. </form:select>
  56. </div>
  57. <div class="col-xs-12 col-sm-6 col-md-4">
  58. <div class="form-group">
  59. <label class="label-item single-overflow pull-left" title="注册时间:">&nbsp;注册时间:</label>
  60. <div class="col-xs-12">
  61. <div class="col-xs-12 col-sm-5">
  62. <div class='input-group date' id='beginCreateDate' style="left: -10px;" >
  63. <input type='text' name="hpUser.beginCreateDate" class="form-control input-sm" placeholder="创建开始时间之后数据" value=""/>
  64. <span class="input-group-addon">
  65. <span class="glyphicon glyphicon-calendar"></span>
  66. </span>
  67. </div>
  68. </div>
  69. <div class="col-xs-12 col-sm-1">
  70. ~
  71. </div>
  72. <div class="col-xs-12 col-sm-5">
  73. <div class='input-group date' id='endCreateDate' style="left: -10px;" >
  74. <input type='text' name="hpUser.endCreateDate" class="form-control input-sm" placeholder="创建结束时间之前数据"/>
  75. <span class="input-group-addon">
  76. <span class="glyphicon glyphicon-calendar"></span>
  77. </span>
  78. </div>
  79. </div>
  80. </div>
  81. </div>
  82. </div>
  83. <div class="col-xs-12 col-sm-3 col-md-2">
  84. <label class="label-item single-overflow pull-left" title="认证状态:">认证状态:</label>
  85. <form:select path="authenticationStatus" class="form-control m-b input-sm">
  86. <form:option value="" label="全部"/>
  87. <form:options items="${fns:getDictList('authentication_status')}" itemLabel="label" itemValue="value" htmlEscape="false"/>
  88. </form:select>
  89. </div>
  90. <div class="col-xs-12 col-sm-3 col-md-2">
  91. <div style="margin-top:26px;margin-left: 10px">
  92. <a id="search" class="btn btn-primary btn-rounded btn-bordered btn-sm"><i class="fa fa-search"></i> 查询</a>
  93. <a id="reset" class="btn btn-primary btn-rounded btn-bordered btn-sm" ><i class="fa fa-refresh"></i> 重置</a>
  94. </div>
  95. </div>
  96. </form:form>
  97. </div>
  98. </div>
  99. <!-- 工具栏 -->
  100. <div id="toolbar">
  101. <shiro:hasPermission name="sys:hpMember:export">
  102. <button id="export" class="btn btn-warning">
  103. <i class="fa fa-file-excel-o"></i> 导出用户
  104. </button>
  105. </shiro:hasPermission>
  106. </div>
  107. <!-- 表格 -->
  108. <table id="hpUserTable" data-toolbar="#toolbar"></table>
  109. </div>
  110. </div>
  111. </div>
  112. <div class="modal fade xcConfirm" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true" id="modal" data-backdrop="static" style="margin-top: 80px;">
  113. <div class="modal-dialog modal-lg" style="width: 420px;">
  114. <div class="modal-content" style="border-radius: 6px;">
  115. <div class="modal-header">
  116. <button data-dismiss="modal" class="close" type="button">x</button>
  117. <div class="modal-title">
  118. 用户二维码
  119. </div>
  120. </div>
  121. <div class="modal-body" align="center">
  122. <img src="" id="qrcode" style="text-align:center; width:250px;height:240px;">
  123. </div>
  124. </div>
  125. </div>
  126. </div>
  127. </body>
  128. </html>