汇联通执法队后台管理系统
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.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <!DOCTYPE html>
  2. <%@ page contentType="text/html;charset=utf-8"%>
  3. <%@ include file="/WEB-INF/jsp/include.jsp"%>
  4. <html>
  5. <head>
  6. <meta http-equiv="expires" content="0" />
  7. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  8. <script type="text/javascript">
  9. // $(function(){
  10. // $.ajaxSetup ({ cache: false});
  11. // $("#submit").click(function(){
  12. // $("#myManage").triggerHandler("taijiModalPost",[$("#myForm"),{table:"none"}]);
  13. // });
  14. // });
  15. </script>
  16. </head>
  17. <body>
  18. <div class="modal-header">
  19. <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
  20. <h4 class="modal-title">审批人详情</h4>
  21. </div>
  22. <div class="modal-body">
  23. <table class="table table-striped table-bordered table-hover">
  24. <tr>
  25. <th>名称</th>
  26. <td>${pageModel.name }</td>
  27. </tr>
  28. <tr>
  29. <th>登录名</th>
  30. <td>${pageModel.loginName }</td>
  31. </tr>
  32. <tr>
  33. <th>性别</th>
  34. <td>${pageModel.male }</td>
  35. </tr>
  36. <tr>
  37. <th>电话</th>
  38. <td>${pageModel.mobile }</td>
  39. </tr>
  40. <tr>
  41. <th>状态</th>
  42. <td>${pageModel.status }</td>
  43. </tr>
  44. <tr>
  45. <th>角色id</th>
  46. <td>${pageModel.roleId }</td>
  47. </tr>
  48. <tr>
  49. <th>单位id</th>
  50. <td>${pageModel.unit }</td>
  51. </tr>
  52. </table>
  53. </div>
  54. <div class="modal-footer">
  55. <a href="#" class="btn btn-sm btn-white" data-dismiss="modal">关闭</a>
  56. </div>
  57. </body>
  58. </html>