qyzx-fbzwgl.html 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. @includeFileTemplate("/www/syrc-mobile/include/qyzx-header.html",{"current":"index"}){}
  2. <!--企业中间 开始-->
  3. <div id="pageContent">
  4. <a id="addrsm" class="btn_add2" href="${ctxPath}/qyzx/goToQyzxZjgw">+ 新增岗位</a>
  5. <div class="qy_tita">
  6. <a class="qy_tit on" onclick="tzym();">正在发布岗位</a>
  7. <a class="qy_tit" onclick="tzym2();">暂停发布岗位</a>
  8. </div>
  9. <ul class="qy_table qy_tab">
  10. @for(user in model.list){
  11. <li>
  12. <h2><a href="javascrpit:void(0)">${user.zw_zwmc}</a><span>发布日期:${user.zw_fbsj}</span></h2>
  13. <p><i>招聘人数:${user.zw_zprs}</i><span>更新日期:${user.zw_gxrq}</span></p>
  14. <p class="qy_pan">
  15. <a class="btn_bj btn_a" href="${ctxPath}/qyzx/selectOne?zw_id=${user.zw_id}">
  16. <img src="${resPath}/syrc-mobile/images/jlzx_con_46.png">编辑</a>
  17. <a class="btn_zt btn_a" href="${ctxPath}/qyzx/updateZt?zw_id=${user.zw_id}">
  18. <img src="${resPath}/syrc/images/jlzx_con_zt.png">暂停</a>
  19. <a class="btn_sc btn_a" onclick="return confirm('确定将此记录删除?');" href="${ctxPath}/qyzx/gwDeleteById?zw_id=${user.zw_id}">
  20. <img src="${resPath}/syrc-mobile/images/jlzx_con_11.png">删除</a>
  21. </p>
  22. </li>
  23. @}
  24. </ul>
  25. <!--企业中间 结束-->
  26. </div>
  27. <!--底部导航 开始-->
  28. <div id="pageFooter">
  29. <!-- <div class="btab">
  30. <div class="t_in"> <a class="i1" href="${frontPath!}/4">首页</a> <a class="i2" href="${frontPath!}/4/1001.html">松原引才</a> <a class="i3" href="${ctxPath!}/gjss/selectExample">网络招聘</a> <a class="i4" href="${frontPath!}/4/1009.html">高级人才</a> <a class="i5 on" href="${frontPath!}/4/1023.html">职业培训</a> </div>
  31. </div> -->
  32. <!--底部导航 结束-->
  33. <script type="text/javascript">
  34. function tzym(){
  35. window.location.href="${ctxPath}/qyzx/goToQyzxFbzwgl";
  36. }
  37. function tzym2(){
  38. window.location.href="${ctxPath}/qyzx/goToQyzxFbzwglForztfb";
  39. }
  40. function shanchu(zw_id){
  41. var gnl=confirm("你真的确定要删除吗?");
  42. if (gnl==true){
  43. window.location.href="${ctxPath}/qyzx/gwDeleteById?zw_id="+zw_id;
  44. return true;
  45. }
  46. else{
  47. return false;
  48. }
  49. }
  50. function bianji(id){
  51. var test='${ctxPath}/qyzx/selectOne?zw_id='+id;
  52. var url=location.href;
  53. mypost(test,{"url":url});
  54. }
  55. function mypost(url, params) {
  56. var temp_form = document.createElement("form");
  57. temp_form .action = url;
  58. temp_form .target = "_self";
  59. temp_form .method = "post";
  60. temp_form .style.display = "none";
  61. for (var x in params) {
  62. var opt = document.createElement("textarea");
  63. opt.name = x;
  64. opt.value = params[x];
  65. temp_form .appendChild(opt);
  66. }
  67. document.body.appendChild(temp_form);
  68. temp_form .submit();
  69. }
  70. </script>
  71. </div>
  72. @includeFileTemplate("/www/syrc-mobile/include/qyzx-footer.html",{"current":"index"}){}