12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <%var cssPar = {%>
- <link rel="stylesheet" href="${contextPath}/DirectorEditPages/css/technologyx.css">
- <link rel="stylesheet" href="${contextPath}/DirectorEditPages/css/font-awesome.min.css">
- <%};%>
- <%var jsPar = {%>
- <script src="${contextPath}/DirectorEditPages/js/jquery.min.js"></script>
- <script src="${contextPath}/DirectorEditPages/js/bootstrap.min.js"></script>
- <%};%>
- <%layout("/DirectorEditPages/commonPage/_layout.html", {nav:"",meunsel:"",jsParam:jsPar,cssParam:cssPar}) {%>
- <!--小导航-->
- <div id="title_nav">
- <div class="conent">
- <span>当前位置:</span>
- <a href="${contextPath}/">首页</a>
- <span>></span>
- <a href="${contextPath}/talentsWeb/toTech">人才大集</a>
- <span>></span>
- <a href="javascript:">参考资料</a>
- </div>
- <div class="login">
- <%if(session.LoginTalentsUser!'' == ''){%>
- 欢迎进入人才大集!
- <a href="${contextPath}/talentsWeb/tologin">登录</a> /
- <a href="${contextPath}/talentsWeb/toRegister">注册</a>
- <%}else{%>
- 欢迎 <b>${session.LoginTalentsUser.name!''}</b> 进入人才大集!
- <a href="${contextPath}/talentsWeb/toPrivate">个人中心</a> /
- <a href="${contextPath}/talentsWeb/toAfterLogin">管理</a> /
- <a href="${contextPath}/talentsWeb/logout">登出</a>
- <%}%>
- </div>
- </div>
- <div class="te-list">
- <div class="search">
- <form action="${contextPath}/talentsWeb/toTechExpert" id="search" role="form" method="post">
- <input type="text" class="text_wen" name="name" placeholder="请输入名称/类型关键字" value="" />
- <button class="btn btn-xs btn-primary" onclick="document.getElementById('searchForm').submit();"><i class="icon-search bigger-120">搜索</i></button>
- </form>
- </div>
- <div class="te-list-name">
- <span>指导信息</span>
- </div>
- <div class="te-list-content">
- <table>
- <thead>
- <tr>
- <th style="width:25%">名称</th>
- <th style="width:25%">信息类型</th>
- <th style="width:25%">发布人</th>
- <th style="width:25%">时间</th>
- </tr>
- </thead>
- <%for(talentsInformation in talentsInformationList){%>
- <tbody>
- <tr style="width:500px;">
-
- <td style="width: 25%;">
- <a href="${contextPath}/talentsWeb/toTechExpertDetail?id=${talentsInformation.id!''}" target="_blank">
- ${talentsInformation.name}
- </a>
- </td>
- <td style="width:25%;">
- <%if(talentsInformation.infoType == 1){%>
- <font>就业指导</font>
- <%}else if(talentsInformation.infoType == 2){%>
- <font>工作顾问</font>
- <%}else if(talentsInformation.infoType == 3){%>
- <font>新闻资讯</font>
- <%}else if(talentsInformation.infoType == 4){%>
- <font>简历模板</font>
- <%}else if(talentsInformation.infoType == 5){%>
- <font>面试指南</font>
- <%}else if(talentsInformation.infoType == 6){%>
- <font>其他</font>
- <%}%>
- </td>
- <td style="width:25%;"> ${talentsInformation.userName}</td>
- <td style="width:25%;"> ${talentsInformation.createDate}</td>
- </tr>
- </tbody>
- <%}%>
- </table>
- </div>
-
- </div>
- <!--分页-->
- <div>
- <ul class="pager">
- <%include("/DirectorEditPages/commonPage/_paginate.html", {"currentPage": pageNumber!1, "totalPage": totalPage!1, "totalRow": totalRow!0, "actionUrl": contextPath+"/talentsWeb/toTechExpert?infoType=" + infoType! + "&pageNumber=", "urlParas": urlParas!''}){}%>
- </ul>
- </div>
- <%}%>
|