汇联通执法队后台管理系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

view.jsp 2.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <!DOCTYPE html>
  2. <%@ page contentType="text/html;charset=utf-8"%>
  3. <%@ include file="/WEB-INF/jsp/include.jsp"%>
  4. <html>
  5. <head>
  6. <script>
  7. $(function(){
  8. $(document).on('click.bs.dropdown.data-api', '.dropdown .noclear', function (e) { e.stopPropagation() });
  9. });
  10. </script>
  11. </head>
  12. <body>
  13. <div class="modal-header">
  14. <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
  15. <h4 class="modal-title">用户管理--查看</h4>
  16. </div>
  17. <div class="modal-body">
  18. <table class="table table-bordered">
  19. <tr>
  20. <th colspan="4" style="color: gray; width: 100%; text-align: center;">用户信息</th>
  21. </tr>
  22. <tr>
  23. <th>用户名:</th>
  24. <td>
  25. <div class="dropdown">
  26. <a href="#" data-toggle="dropdown" class="dropdown-toggle">${fn:escapeXml(pageModel.name)}<span class="caret"></span></a>
  27. <div class="dropdown-menu noclear" style="min-width: 250px">
  28. <ul class="list-group" style="padding: 10px">
  29. <li class="list-group-item list-group-item-info">用户名:${fn:escapeXml(pageModel.name)}</li>
  30. <li class="list-group-item list-group-item-info">登录名:${fn:escapeXml(pageModel.loginName)}</li>
  31. <li class="list-group-item list-group-item-info">邮箱:${fn:escapeXml(pageModel.email)}</li>
  32. <li class="list-group-item list-group-item-info">手机:${pageModel.mobile}</li>
  33. <li class="list-group-item list-group-item-info">状态:${pageModel.status.value}</li>
  34. <li class="list-group-item list-group-item-info">性别:<c:if test="${pageModel.male}">男</c:if>
  35. <c:if test="${!pageModel.male}">女</c:if></li>
  36. </ul>
  37. </div>
  38. </div>
  39. </td>
  40. <th>登录名:</th>
  41. <td>${fn:escapeXml(pageModel.loginName)}</td>
  42. </tr>
  43. <tr>
  44. <th>单位</th>
  45. <td colspan="3">${fn:escapeXml(pageModel.unit.name)}</td>
  46. </tr>
  47. <tr>
  48. <th>状态:</th>
  49. <td>${pageModel.status.value}</td>
  50. <th>性别:</th>
  51. <td>
  52. <c:if test="${pageModel.male}">男</c:if>
  53. <c:if test="${!pageModel.male}">女</c:if>
  54. </td>
  55. </tr>
  56. <tr>
  57. <th>邮箱:</th>
  58. <td>${fn:escapeXml(pageModel.email)}</td>
  59. <th>手机:</th>
  60. <td>${pageModel.mobile}</td>
  61. </tr>
  62. <tr>
  63. <th>电话:</th>
  64. <td>${pageModel.tel}</td>
  65. <th>传真:</th>
  66. <td>${pageModel.fax}</td>
  67. </tr>
  68. </table>
  69. </div>
  70. <div class="modal-footer">
  71. <a href="#" class="btn btn-sm btn-white" data-dismiss="modal">关闭</a>
  72. </div>
  73. </body>
  74. </html>