listPage.html 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <%var cssPar = {%>
  2. <link href="${contextPath}/WebPages_170421/css/personal/list.css" rel="stylesheet" type="text/css">
  3. <%};%>
  4. <%var jsPar = {%>
  5. <script type="text/javascript" src="${contextPath}/WebPages_170421/js/personal/list.js"></script>
  6. <%};%>
  7. <%layout("/WebPages_170421/personalPages/commonPage/_layout.html", {nav:"",meunsel:"",jsParam:jsPar,cssParam:cssPar}) {%>
  8. <div class="container">
  9. <div class="conent">
  10. <span class="nin">您当前的位置:</span>
  11. <a href="/" class="yiji">首页</a>
  12. <span class="nin"> > </span>
  13. <a href="/toindex" class="yiji">个人中心</a>
  14. <span class="nin"> > </span>
  15. <a href="${contextPath}/experts/getExpertsList?pageNumber=1" class="yiji">专家信息管理</a>
  16. </div>
  17. </div>
  18. <div class="container" >
  19. <% include("/WebPages_170421/personalPages/commonPage/_navigation.html"){} %>
  20. <div class="Dlrt">
  21. <form action="/experts/getExpertsList" method="post" class="frmSs">
  22. <input type="hidden" name="pageNumber" value="1" />
  23. <span class="p1">查询姓名:</span>
  24. <input type="text" class="p2" name="name" placeholder="请输入姓名">
  25. <span class="p1">查询从事专业:</span>
  26. <input type="text" class="p2" name="ZJZY" placeholder="请输入从事专业">
  27. <span class="p1">查询证件号码:</span>
  28. <input type="text" class="p2" name="card" placeholder="请输入证件号码">
  29. <input type="submit" class="p3" value="查询">
  30. <a href="${contextPath}/experts/toedit?pageNumber=${pageNumber!1}">
  31. <input type="button" class="p4" value="添加专家信息">
  32. </a>
  33. </form>
  34. <div class="table-fa">
  35. <table border="1" style="border-bottom:1px solid #cccccc; border-left:1px solid #f6f7f8; border-top:1px solid #f6f7f8; border-right:1px solid #cccccc;" width="915px" >
  36. <thead>
  37. <tr style="width: 910px; height: 40px; text-align: center; background: #e5f1f9">
  38. <th>序号</th>
  39. <th>姓名</th>
  40. <th>性别</th>
  41. <th>出生日期</th>
  42. <th>民族</th>
  43. <th>职称</th>
  44. <th>具体职称</th>
  45. <th>职务</th>
  46. <th>从事专业</th>
  47. <th>可供咨询领域</th>
  48. <th>操 作</th>
  49. </tr>
  50. </thead>
  51. <tbody id="t1">
  52. <%for(tempDate in dateList!){%>
  53. <tr style=" height: 40px;">
  54. <td>${tempDateLP.index}</td>
  55. <td>${tempDate.name!''}</td>
  56. <td>${tempDate.sex!''}</td>
  57. <td>${tempDate.birthdate!''}</td>
  58. <td>${tempDate.national!''}</td>
  59. <td>${tempDate.technical!''}</td>
  60. <td>${tempDate.technicalActual!''}</td>
  61. <td>${tempDate.position!''}</td>
  62. <td>${tempDate.ZJZY!''}</td>
  63. <td>${tempDate.field!''}</td>
  64. <td style="width:110px;">
  65. <%if(session.LoginUser.isplatform==1){%>
  66. <a href="${contextPath}/experts/view?id=${tempDate.id}">
  67. <div class="btn1" style="margin-left:12px;" title="详情">
  68. <i class="icon-folder-open-alt"></i>
  69. </div>
  70. </a>
  71. <a href="${contextPath}/experts/toedit?id=${tempDate.id}&pageNumber=${pageNumber!1}&urlParas=${urlParas!}">
  72. <div class="btn1" title="编辑">
  73. <i class="icon-edit"></i>
  74. </div>
  75. </a>
  76. <a href="javascript:" onclick="del()">
  77. <div class="btn1 bgli" title="删除">
  78. <i class="icon-trash" ></i>
  79. </div>
  80. </a>
  81. <%}%>
  82. </td>
  83. </tr>
  84. <div id="box">
  85. <p style="width: 200px; height:80px; line-height:80px; text-align: center;">确认删除吗?</p>
  86. <a href="${contextPath}/experts/del?id=${tempDate.id}&pageNumber=${pageNumber!1}&urlParas=${urlParas!}">
  87. <input type="button" onclick="yes()" value="确定" class="delBtn">
  88. </a>
  89. <input type="button" onclick="no()" value="取消" class="delBtn m0" >
  90. </div>
  91. <%}elsefor{%>
  92. <tr>
  93. <td colspan="12">没有记录!</td>
  94. </tr>
  95. <%}%>
  96. </tbody>
  97. </table>
  98. <%include("/WebPages_170421/personalPages/commonPage/_paginate.html", {"currentPage": pageNumber!1, "totalPage": totalPage!1, "totalRow": totalRow!0, "actionUrl": contextPath+"/experts/getExpertsList?pageNumber=", "urlParas": urlParas!''}){}%>
  99. </div>
  100. </div>
  101. </div>
  102. <%}%>