index.html 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {extend name="public/base_human"/}
  2. {block name="css"}
  3. <style>
  4. .title-box {padding-top:90px;color:white;}
  5. .title {text-align: center;}
  6. .btn-box {width:80%;margin:0 auto;padding-top:20px;}
  7. .btn-box .van-button {margin-top:30px;}
  8. .content-box {height: 100vh;width:100vw;box-sizing: border-box;background-image: url("/static/mobile/images/bg_human.jpg");background-size:cover;background-repeat: no-repeat;}
  9. </style>
  10. {/block}
  11. {block name="body"}
  12. <div class="content-box">
  13. <div class="title-box">
  14. <h3 class="title">福建省(晋江)人力资源服务业发展大会</h3>
  15. <h3 class="title">暨人力资源服务供需对接会</h3>
  16. </div>
  17. <div class="btn-box">
  18. <van-button type="primary" size="large" block @click="toEnterprise">企业报名</van-button>
  19. <van-button type="primary" size="large" block @click="toInstitution">人力服务机构报名</van-button>
  20. <van-button type="primary" size="large" block @click="toDescribe">大会介绍</van-button>
  21. <van-button type="primary" size="large" block @click="toJinjiang">晋江介绍</van-button>
  22. <van-button type="primary" size="large" block @click="toRenZi">人资公司介绍</van-button>
  23. </div>
  24. </div>
  25. {/block}
  26. {block name="script"}
  27. <script>
  28. function v_setup() {
  29. let base = {};
  30. base.toEnterprise = () => {
  31. location.href = "{:url('human/enterpriseForm')}";
  32. };
  33. base.toInstitution = () => {
  34. location.href = "{:url('human/institutionForm')}";
  35. };
  36. base.toDescribe = () => {
  37. location.href = "{:url('human/describe')}";
  38. };
  39. base.toJinjiang = () => {
  40. location.href = "{:url('human/jinjiang')}";
  41. };
  42. base.toRenZi = () => {
  43. location.href = "{:url('human/renzi')}";
  44. };
  45. return base;
  46. }
  47. </script>
  48. {/block}