personalFilesListPages.html 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <%var cssPar = {%>
  2. <link rel="stylesheet" href="${contextPath}/WebPages_170421/css/service/service.css" type="text/css">
  3. <link href="${contextPath}/WebPages_170421/personalFilesPages/css/bootstrap/bootstrap.min.css" rel="stylesheet">
  4. <link href="${contextPath}/WebPages_170421/personalFilesPages/css/personalFilesPages/personalFilesListPages.css" rel="stylesheet" type="text/css">
  5. <%};%>
  6. <%var jsPar = {%>
  7. <script type="text/javascript" src="${contextPath}/WebPages_170421/js/service/service.js"></script>
  8. <script type="text/javascript" src="${contextPath}/WebPages_170421/js/jump.js"></script>
  9. <script src="${contextPath}/WebPages_170421/js/jquery.js"></script>
  10. <script src="${contextPath}/WebPages_170421/js/bootstrap.min.js"></script>
  11. <script>
  12. function tishi(){
  13. alert("请登录后操作!");
  14. }
  15. </script>
  16. <%};%>
  17. <%layout("/WebPages_170421/commonPage/_layout.html", {nav:"",meunsel:"",jsParam:jsPar,cssParam:cssPar}) {%>
  18. <div class="container">
  19. <div class="conent" style="width: 1138px;" >
  20. <span class="nin">您当前的位置:</span>
  21. <a href="#this" class="yiji">我的主页</a>
  22. <span class="nin"> > </span>
  23. <a href="#this" class="yiji">党政资料</a>
  24. <%if(session.LoginUser!'' == ''){%>
  25. <a id="null" href="javascript:tishi();">
  26. <button style="float: right; background: #c7ddef; margin-top: 12px;" class="btn1">完善我的资料</button>
  27. </a>
  28. <%}else{%>
  29. <%if(add == 0){%>
  30. <a href="${contextPath}/PersonalFiles/toPersonalFile">
  31. <button style="float: right; background: #c7ddef; margin-top: 12px;" class="btn1">完善我的资料</button>
  32. <!--
  33. <input type="button" style="float: right; width:150px; background: #c7ddef; margin-top: 12px;" class="btn1" value="完善我的资料">
  34. -->
  35. </a>
  36. <%}else if(add == 3){%>
  37. <a href="${contextPath}/PersonalFiles/toPersonalFile?type=2">
  38. <button style="float: right; background: #c7ddef; margin-top: 12px;" class="btn1">编辑我的资料</button>
  39. </a>
  40. <%}else if(add == 2){%>
  41. <a href="${contextPath}/PersonalFiles/toPersonalFile?type=3">
  42. <button style="float: right; background: #c7ddef; margin-top: 12px;" class="btn1">修改被拒资料</button>
  43. </a>
  44. <%}%>
  45. <%}%>
  46. </div>
  47. </div>
  48. <div class="container">
  49. <div class="list">
  50. <table class="table">
  51. <thead class="thed">
  52. <tr>
  53. <td style="padding-left: 30px;">姓名</td>
  54. <td>性别</td>
  55. <td>职务</td>
  56. <td>工作单位</td>
  57. <td>办公电话</td>
  58. <td>信息详情</td>
  59. </tr>
  60. </thead>
  61. <tbody>
  62. <%for(tempDate in dateList!){%>
  63. <tr>
  64. <td style="padding-left: 30px;">${tempDate.userName!''}</td>
  65. <td>
  66. <%if(tempDate.sex == 0){%>
  67. <%}else{%>
  68. <%}%>
  69. </td>
  70. <td>${tempDate.position!''}</td>
  71. <td>${tempDate.unitName!''}</td>
  72. <td>${tempDate.tel!''}</td>
  73. <td>
  74. <a href="${contextPath}/PersonalFiles/personalFileView?id=${tempDate.id}">
  75. <button class="btn">查看</button>
  76. </a>
  77. <!-- <button class="btn">查看</button> -->
  78. </td>
  79. </tr>
  80. <%}elsefor{%>
  81. <tr>
  82. <td colspan="6">没有记录!</td>
  83. </tr>
  84. <%}%>
  85. </tbody>
  86. </table>
  87. <div class="pageUl">
  88. <ul class="pageUl">
  89. <%include("/WebPages_170421/commonPage/_paginate.html", {"currentPage": pageNumber!1, "totalPage": totalPage!1, "totalRow": totalRow!0, "actionUrl": contextPath+"/PersonalFiles/getPersonalFileList?pageNumber="}){}%>
  90. </ul>
  91. </div>
  92. </div>
  93. </div>
  94. <%}%>