12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- {extend name="public/base_human"/}
- {block name="css"}
- <style>
- .title-box {padding-top:90px;color:white;}
- .title {text-align: center;}
- .btn-box {width:80%;margin:0 auto;padding-top:20px;}
- .btn-box .van-button {margin-top:30px;}
- .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;}
- </style>
- {/block}
- {block name="body"}
- <div class="content-box">
- <div class="title-box">
- <h3 class="title">福建省(晋江)人力资源服务业发展大会</h3>
- <h3 class="title">暨人力资源服务供需对接会</h3>
- </div>
- <div class="btn-box">
- <van-button type="primary" size="large" block @click="toEnterprise">企业报名</van-button>
- <van-button type="primary" size="large" block @click="toInstitution">人力服务机构报名</van-button>
- <van-button type="primary" size="large" block @click="toDescribe">大会介绍</van-button>
- <van-button type="primary" size="large" block @click="toJinjiang">晋江介绍</van-button>
- </div>
- </div>
- {/block}
- {block name="script"}
- <script>
- function v_setup() {
- let base = {};
- base.toEnterprise = () => {
- location.href = "{:url('human/enterpriseForm')}";
- };
- base.toInstitution = () => {
- location.href = "{:url('human/institutionForm')}";
- };
- base.toDescribe = () => {
- location.href = "{:url('human/describe')}";
- };
- base.toJinjiang = () => {
- location.href = "{:url('human/jinjiang')}";
- };
- return base;
- }
- </script>
- {/block}
|