ecGrzxList.html 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>${siteTitle!}</title>
  6. <link rel="stylesheet" type="text/css" href="${resPath}/syrc/css/ly_html.css">
  7. <link rel="stylesheet" type="text/css" href="${resPath}/syrc/css/syrc-body.css">
  8. <link rel="stylesheet" type="text/css" href="${resPath}/syrc/css/syrc-page.css">
  9. <link rel="stylesheet" type="text/css" href="${resPath}/syrc/css/myPagination.css">
  10. <script src="${resPath}/syrc/js/myPagination.js"></script>
  11. <script src="${resPath}/syrc/js/jquery-1.7.2.min.js"></script>
  12. <script src="${resPath}/syrc/js/qyzx_js .js"></script>
  13. </head>
  14. <body>
  15. @includeFileTemplate("/www/syrc/include/header.html",{"current":"index"}){}
  16. <!--内容开始-->
  17. <div class="contentbox er_con">
  18. <div class=" clearfix">
  19. <div class="con_left fl">
  20. <h4>个人中心</h4>
  21. <ul class="left_nav">
  22. @includeFileTemplate("/www/syrc/include/grzx-eightOtherLeftMeun.html",{"current":"index"}){}
  23. </ul>
  24. </div>
  25. <div class="con_right fr">
  26. <div class="er_tit">
  27. <span>报名记录</span>
  28. <a class="qyzx_xzgw er_tit_a" onclick="exportExcel()">导出记录</a>
  29. </div>
  30. <div class="qygl_con">
  31. <div class="tab_tit2 con_tit">
  32. <span onclick="tzym();" class="on">报名记录</span>
  33. </div>
  34. <table class="con_table tab_table2">
  35. <thead>
  36. <th width="300">公司名称</th>
  37. <th width="100">姓名</th>
  38. <th width="100">联系电话</th>
  39. <th width="100">学历</th>
  40. <th width="200">毕业院校</th>
  41. <th width="100">操作</th>
  42. </thead>
  43. @for(zxbm in model.list){
  44. <tr>
  45. <td><a style="color:#318ddc" target="_blank" href="${ctxPath}/${sitePrefix}/4/${categoryId}/${zxbm.contentId}">${zxbm.qy_qymc!,xss}</a></td>
  46. <td>${zxbm.name!,xss}</td>
  47. <td>${zxbm.tel}</td>
  48. <td>
  49. @if(zxbm.education=='0'){
  50. <span>高中</span>
  51. @}else if(zxbm.education=='1'){
  52. <span>大专</span>
  53. @}else if(zxbm.education=='2'){
  54. <span>本科</span>
  55. @}
  56. </td>
  57. <td>${zxbm.wentToSchool}</td>
  58. <td>
  59. <a class="btn_sc btn_a" target="_blank" href="${ctxPath}/ecZxbm/zxbm/detail/${zxbm.id}">
  60. <img src="${resPath}/syrc/images/jlzx_con_34.png"/>详情
  61. </a>
  62. </td>
  63. </tr>
  64. @}
  65. <tr>
  66. <td colspan="8">
  67. <div id="pagination" class="pagination"></div>
  68. </td>
  69. </tr>
  70. </table>
  71. <script type="text/javascript">
  72. var datatotal = '${model.total}';
  73. var pageAmount =10;
  74. var pagenum = '${model.pageNum}';
  75. pageTotal=Math.ceil(datatotal/pageAmount);
  76. if(pageTotal>10){
  77. pageSize=10
  78. }else{
  79. pageSize=pageTotal
  80. }
  81. window.onload = function () {
  82. new myPagination({
  83. id: 'pagination',
  84. curPage:pagenum, //初始页码
  85. pageTotal: pageTotal, //总页数
  86. pageAmount: pageAmount, //每页多少条
  87. dataTotal: datatotal, //总共多少条数据
  88. getPage: function (page) {
  89. window.location.href ='${ctxPath}/ecZxbm/grzx/list/${categoryId}?pageNum='+page;
  90. }
  91. })
  92. }
  93. function exportExcel() {
  94. $.post("${ctxPath}/ecZxbm/grzx/excelCount/${categoryId}",function(res){
  95. if(res == 0){
  96. alert("未查询到数据!");
  97. return;
  98. }
  99. location.href = "${ctxPath}/ecZxbm/grzx/excel/${categoryId}";
  100. });
  101. }
  102. </script>
  103. </div>
  104. </div>
  105. <!-- 应聘人才管理 结束-->
  106. </div>
  107. </div>
  108. </div>
  109. <!--内容结束-->
  110. @includeFileTemplate("/www/syrc/include/footer.html",{"current":"index"}){}
  111. <!--邀请人才弹出框-->
  112. <div class="yqrc_div">
  113. <p>成功邀请面试</p>
  114. <a class="yq_qd">确定</a>
  115. </div>
  116. <!--邀请人才弹出框-->
  117. <!--遮盖层-->
  118. <div id="layer_back_drop" class="layer_back_drop_class" style=""></div>
  119. <!--遮盖层-->