renzi.html 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {extend name="public/base_human"/}
  2. {block name="css"}
  3. <style>
  4. .content{text-indent: 2em;margin:0;}
  5. .content-box{box-sizing: border-box;padding:10px;background: white;}
  6. .text-center {text-align: center;}
  7. .content-box .wechat {width:50%;display: block;margin:10px auto;}
  8. .company {display: block;width: 100%;}
  9. </style>
  10. {/block}
  11. {block name="body"}
  12. <van-nav-bar
  13. class="nav-theme"
  14. :fixed="true"
  15. :placeholder="true"
  16. left-text="返回"
  17. left-arrow
  18. @click-left="onBack"
  19. >
  20. <template #title>
  21. <span class="text-white">人资公司介绍</span>
  22. </template>
  23. </van-nav-bar>
  24. <div class="content-box">
  25. <p class="content">福建省晋江人力资本有限公司成立于2019年5月15日,是晋江市属二级国企,国有独资,业务主管部门为晋江市委组织部(人才办)。</p>
  26. <p class="content">晋江人资公司致力于开拓“政府做不了,市场做不好或者不好做的”人力资源业务,目标是成为政府助手,人才保姆,城市HR,是晋江市委、市政府人才工作的重要平台和抓手。</p>
  27. <p class="content">目前主营业务包括:人才培训,猎头,人力资源管理咨询,委托招聘,劳务派遣,策划承办各类人才活动,人力资源领域网络技术开发,运营泉州(晋江)国际人才港、泉州市(晋江)人力资源服务产业园两大人才工作实体平台及区域性一体化人才服务大数据平台聚才网。</p>
  28. <p class="text-center">扫码联系业务合作</p>
  29. <img src="/static/mobile/images/wechat_qrcode.jpg" class="wechat" alt="">
  30. </div>
  31. <img src="/static/mobile/images/company/1.jpg" @click="showImage(0)" class="company" alt="">
  32. <img src="/static/mobile/images/company/2.jpg" @click="showImage(1)" class="company" alt="">
  33. <img src="/static/mobile/images/company/3.jpg" @click="showImage(2)" class="company" alt="">
  34. <img src="/static/mobile/images/company/4.jpg" @click="showImage(3)" class="company" alt="">
  35. {/block}
  36. {block name="script"}
  37. <script>
  38. function v_setup() {
  39. let base = {};
  40. base.onBack = () => {
  41. history.back();
  42. };
  43. base.showImage = (index) => {
  44. vant.showImagePreview({
  45. images:[
  46. '/static/mobile/images/company/1.jpg',
  47. '/static/mobile/images/company/2.jpg',
  48. '/static/mobile/images/company/3.jpg',
  49. '/static/mobile/images/company/4.jpg',
  50. ],
  51. startPosition: index,
  52. });
  53. };
  54. return base;
  55. }
  56. </script>
  57. {/block}