center.html 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {extend name="public/base_human"/}
  2. {block name="css"}
  3. <style>
  4. </style>
  5. {/block}
  6. {block name="body"}
  7. <van-sticky>
  8. <van-nav-bar
  9. class="nav-theme"
  10. :fixed="true"
  11. :placeholder="true"
  12. >
  13. <template #title>
  14. <span class="text-white">服务中心</span>
  15. </template>
  16. </van-nav-bar>
  17. </van-sticky>
  18. <van-cell-group>
  19. <van-cell title="大会介绍" is-link url="{:url('human/describe')}"></van-cell>
  20. <van-cell title="服务指南" is-link url="{:url('human/guide')}"></van-cell>
  21. <van-cell title="晋江介绍" is-link url="{:url('human/jinjiang')}"></van-cell>
  22. <van-cell title="人资公司介绍" is-link url="{:url('human/renzi')}"></van-cell>
  23. <van-cell title="谁看过我" is-link url="{:url('human/seeme')}"></van-cell>
  24. <van-cell title="联系我们" is-link @click="showImage"></van-cell>
  25. </van-cell-group>
  26. <van-tabbar v-model="active">
  27. <van-tabbar-item icon="home-o" @click="toEnterprise">企业列表</van-tabbar-item>
  28. <van-tabbar-item icon="friends-o" @click="toInstitution">机构列表</van-tabbar-item>
  29. <van-tabbar-item icon="manager-o">服务中心</van-tabbar-item>
  30. </van-tabbar>
  31. {/block}
  32. {block name="script"}
  33. <script>
  34. function v_setup() {
  35. let base = {};
  36. base.active = Vue.ref(2);
  37. base.showImage = () => {
  38. vant.showImagePreview([
  39. '/static/mobile/images/wechat_qrcode_institution.jpg',
  40. '/static/mobile/images/wechat_qrcode_enterprise.jpg',
  41. ]);
  42. };
  43. base.toInstitution = () => {
  44. location.href = "{:url('human/institutionList')}";
  45. };
  46. base.toEnterprise = () => {
  47. location.href = "{:url('human/enterpriseList')}";
  48. };
  49. return base;
  50. }
  51. </script>
  52. {/block}