123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>${siteTitle!}</title>
- <link rel="stylesheet" type="text/css" href="${resPath}/bcrc/css/ly_html.css">
- <link rel="stylesheet" type="text/css" href="${resPath}/bcrc/css/bcrc-body.css">
- <link rel="stylesheet" type="text/css" href="${resPath}/bcrc/css/bcrc-page.css">
- <link rel="stylesheet" type="text/css" href="${resPath}/syrc/css/myPagination.css">
- <script src="${resPath}/syrc/js/myPagination.js"></script>
- <script src="${resPath}/syrc/js/jquery-1.7.2.min.js"></script>
- <script src="${resPath}/syrc/js/qyzx_js .js"></script>
- <script type="text/javascript" src="${resPath}/syrc/js/TL_Tab.js"></script>
- </head>
- <body>
- <div class="contentbig">
- @includeFileTemplate("/www/syrc/include/header.html",{"current":"index"}){}
- <!--内容开始-->
- <div class="wz_cont">
- <div class="wz_cont_in">
- <div class="dqwz">当前位置:<a href="${frontPath!}/4">首页</a>>>应聘人才管理</div>
- <div class=" clearfix">
- <div class="con_left fl">
- <h4><img src="${resPath}/bcrc/images/qyzx_03.png"/></h4>
- <ul class="left_nav">
- @includeFileTemplate("/www/syrc/include/qyzx-eightOtherLeftMeun.html",{"current":"index"}){}
- </ul>
- </div>
- <div class="con_right fr">
- <!--简历中心 开始-->
- <div class="all_title"><a><span>应聘人才管理</span></a></div>
- <table class="con_table tab_table2">
- <thead>
- <th width="20%">申请职位</th>
- <th width="15%">姓名</th>
- <th width="10%">性别</th>
- <th width="15%">出生日期</th>
- <th width="15%">学历</th>
- <th width="15%">申请日期</th>
- <th width="10%">操作</th>
- </thead>
- @for(user in model.list){
- <tr>
- <td>${user.zw_zwmc}</td>
- <td><a target="_blank" href="${ctxPath}/cms/resume/yljlforqy?tdjlId=${user.tdjl_id}&id=${user.JL_BB_ID}&zh_id=${user.zh_id}" style="color: #4594d7;">${user.jianli_xm}</a></td>
- <td>
- @if(user.jianli_xb==1){
- 女
- @}else if(user.jianli_xb==0){
- 男
- @}
- </td>
- <td>${user.jianli_csrq}</td>
- <td>
- @if(user.jyjl_xl==0){
- 初中及以下
- @}else if(user.jyjl_xl==1){
- 高中
- @}else if(user.jyjl_xl==2){
- 中专
- @}else if(user.jyjl_xl==3){
- 大专
- @}else if(user.jyjl_xl==4){
- 本科
- @}else if(user.jyjl_xl==5){
- 硕士
- @}else if(user.jyjl_xl==6){
- 博士
- @}else if(user.jyjl_xl==7){
- MBA
- @}
- </td>
- <td>${user.tdjl_time}</td>
- <td>
- <a class="btn_sc btn_a" href="javascript:if(confirm('确认删除吗?'))window.location='${ctxPath}/qyzx/deleteByPrimiryKey?tdjl_id=${user.tdjl_id}'"><img src="${resPath}/syrc/images/jlzx_con_11.png"/>删除</a>
- </td>
- </tr>
- @}
- <tr>
- <td colspan="8">
- <div id="pagination" class="pagination"></div>
- </td>
- </tr>
- </table>
- <script type="text/javascript">
- var datatotal = '${model.total}';
- var pageAmount =5;
- var pagenum = '${model.pageNum}';
- pageTotal=Math.ceil(datatotal/pageAmount);
- if(pageTotal>5){
- pageSize=5
- }else{
- pageSize=pageTotal
- }
- window.onload = function () {
- new myPagination({
- id: 'pagination',
- curPage:pagenum, //初始页码
- pageTotal: pageTotal, //总页数
- pageAmount: pageAmount, //每页多少条
- dataTotal: datatotal, //总共多少条数据
- getPage: function (page) {
- window.location.href ='${ctxPath}/qyzx/goToQyzxYprcgl?pageNum='+page;
- }
- })
- }
- function tzym(){
- window.location.href="${ctxPath}/qyzx/goToQyzxYprcgl";
- }
- function tzym2(){
- window.location.href="${ctxPath}/qyzx/goToQyzxYprcglForMsyq";
- }
- </script>
- </div>
- </div>
- </div>
- </div>
- <!--内容结束-->
- @includeFileTemplate("/www/syrc/include/footer.html",{"current":"index"}){}
- </div>
- </body>
- </html>
|