expert_list.html 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <%var cssPar = {%>
  2. <link rel="stylesheet" href="${contextPath}/DirectorEditPages/css/technologyx.css">
  3. <link rel="stylesheet" href="${contextPath}/DirectorEditPages/css/font-awesome.min.css">
  4. <%};%>
  5. <%var jsPar = {%>
  6. <script src="${contextPath}/DirectorEditPages/js/jquery.min.js"></script>
  7. <script src="${contextPath}/DirectorEditPages/js/bootstrap.min.js"></script>
  8. <%};%>
  9. <%layout("/DirectorEditPages/commonPage/_layout.html", {nav:"",meunsel:"",jsParam:jsPar,cssParam:cssPar}) {%>
  10. <!--小导航-->
  11. <div id="title_nav">
  12. <div class="conent">
  13. <span>当前位置:</span>
  14. <a href="${contextPath}/">首页</a>
  15. <span>></span>
  16. <a href="${contextPath}/talentsWeb/toTech">人才大集</a>
  17. <span>></span>
  18. <a href="javascript:">参考资料</a>
  19. </div>
  20. <div class="login">
  21. <%if(session.LoginTalentsUser!'' == ''){%>
  22. 欢迎进入人才大集!&nbsp;&nbsp;
  23. <a href="${contextPath}/talentsWeb/tologin">登录</a>&nbsp;/&nbsp;
  24. <a href="${contextPath}/talentsWeb/toRegister">注册</a>
  25. <%}else{%>
  26. 欢迎 <b>${session.LoginTalentsUser.name!''}</b> 进入人才大集!&nbsp;&nbsp;
  27. <a href="${contextPath}/talentsWeb/toPrivate">个人中心</a>&nbsp;/&nbsp;
  28. <a href="${contextPath}/talentsWeb/toAfterLogin">管理</a>&nbsp;/&nbsp;
  29. <a href="${contextPath}/talentsWeb/logout">登出</a>
  30. <%}%>
  31. </div>
  32. </div>
  33. <div class="te-list">
  34. <div class="search">
  35. <form action="${contextPath}/talentsWeb/toTechExpert" id="search" role="form" method="post">
  36. <input type="text" class="text_wen" name="name" placeholder="请输入名称/类型关键字" value="" />
  37. <button class="btn btn-xs btn-primary" onclick="document.getElementById('searchForm').submit();"><i class="icon-search bigger-120">搜索</i></button>
  38. </form>
  39. </div>
  40. <div class="te-list-name">
  41. <span>指导信息</span>
  42. </div>
  43. <div class="te-list-content">
  44. <table>
  45. <thead>
  46. <tr>
  47. <th style="width:25%">名称</th>
  48. <th style="width:25%">信息类型</th>
  49. <th style="width:25%">发布人</th>
  50. <th style="width:25%">时间</th>
  51. </tr>
  52. </thead>
  53. <%for(talentsInformation in talentsInformationList){%>
  54. <tbody>
  55. <tr style="width:500px;">
  56. <td style="width: 25%;">
  57. <a href="${contextPath}/talentsWeb/toTechExpertDetail?id=${talentsInformation.id!''}" target="_blank">
  58. ${talentsInformation.name}
  59. </a>
  60. </td>
  61. <td style="width:25%;">
  62. <%if(talentsInformation.infoType == 1){%>
  63. <font>就业指导</font>
  64. <%}else if(talentsInformation.infoType == 2){%>
  65. <font>工作顾问</font>
  66. <%}else if(talentsInformation.infoType == 3){%>
  67. <font>新闻资讯</font>
  68. <%}else if(talentsInformation.infoType == 4){%>
  69. <font>简历模板</font>
  70. <%}else if(talentsInformation.infoType == 5){%>
  71. <font>面试指南</font>
  72. <%}else if(talentsInformation.infoType == 6){%>
  73. <font>其他</font>
  74. <%}%>
  75. </td>
  76. <td style="width:25%;"> ${talentsInformation.userName}</td>
  77. <td style="width:25%;"> ${talentsInformation.createDate}</td>
  78. </tr>
  79. </tbody>
  80. <%}%>
  81. </table>
  82. </div>
  83. </div>
  84. <!--分页-->
  85. <div>
  86. <ul class="pager">
  87. <%include("/DirectorEditPages/commonPage/_paginate.html", {"currentPage": pageNumber!1, "totalPage": totalPage!1, "totalRow": totalRow!0, "actionUrl": contextPath+"/talentsWeb/toTechExpert?infoType=" + infoType! + "&pageNumber=", "urlParas": urlParas!''}){}%>
  88. </ul>
  89. </div>
  90. <%}%>