userview.jsp 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <%@ page language="java" contentType="text/html; charset=UTF-8"
  2. pageEncoding="UTF-8"%>
  3. <!DOCTYPE html>
  4. <html lang="en">
  5. <head>
  6. <meta charset="utf-8">
  7. <title>江苏省港口建设与经营管理信息系统</title>
  8. <meta name="viewport" content="width=device-width, initial-scale=1">
  9. <%@ include file="../../common.jsp"%>
  10. <script type="text/javascript" src="${app }/static/biz/js/set/user/userdetail.js"></script>
  11. <script type="text/javascript">
  12. $(document).ready(function () {
  13. user.detail.roleDate='${rolelist}';
  14. user.detail.existRole='${roles}';
  15. user.detail.szdData='${record.szd.id}';
  16. user.detail.ssglbm='${record.ssglbm.id}';
  17. user.detail.init();
  18. sfjyr();
  19. });
  20. function sfjyr(){
  21. var sfjyr='${record.sfjyrzw }';
  22. if(sfjyr=="") {
  23. $('#ssjyr').hide();
  24. $('#ssgl').hide();
  25. } else if(sfjyr=="是") {
  26. $('#ssjyr').show();
  27. $('#ssgl').hide();
  28. } else {
  29. $('#ssjyr').hide();
  30. $('#ssgl').show();
  31. }
  32. }
  33. </script>
  34. <style typt="text/css">
  35. .apply td{font-size: 14px;}
  36. </style>
  37. </head>
  38. <body>
  39. <div class="box" >
  40. <div class="box-content" >
  41. <div class="apply_fill">
  42. <table class="apply" cellpadding="0" cellspacing="0">
  43. <tr>
  44. <th>所在地:&nbsp;</th>
  45. <td colspan="3">${record.szd.text}</td>
  46. </tr>
  47. <tr>
  48. <th>用户名称 : &nbsp;</th>
  49. <td >
  50. ${record.name }
  51. </td>
  52. <th>登录账号: &nbsp;</th>
  53. <td >
  54. ${record.uname }
  55. </td>
  56. </tr>
  57. <tr>
  58. <th>所属角色 : &nbsp;</th>
  59. <td >
  60. ${record.rolezw }
  61. </td>
  62. <th >是否经营人: &nbsp;</th>
  63. <td>
  64. ${record.sfjyrzw }
  65. </td>
  66. </tr>
  67. <tr>
  68. <th>微信号 : &nbsp;</th>
  69. <td >
  70. ${record.weixinid }
  71. </td>
  72. <th>排序号 : &nbsp;</th>
  73. <td >
  74. ${record.sortno }
  75. </td>
  76. </tr>
  77. <tr id="ssjyr">
  78. <th>所属经营人: &nbsp;</th>
  79. <td id="d1">
  80. ${record.ssjyrzw }
  81. </td>
  82. </tr>
  83. <tr id="ssgl">
  84. <th>所属管理部门: &nbsp;</th>
  85. <td >
  86. ${record.ssglbmzw }
  87. </td>
  88. <th>所属管理人员: &nbsp;</th>
  89. <td >
  90. ${record.ssglryzw }
  91. </td>
  92. </tr>
  93. </table>
  94. <div id="buttons">
  95. <a class="btn btn-default btn-sm" href="#" onclick="user.detail.back()">
  96. <i class="glyphicon glyphicon-arrow-left"></i>
  97. 返回</a>
  98. </div>
  99. </div>
  100. </div>
  101. </div>
  102. </body>
  103. </html>