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