center.html 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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 title="图文直播" is-link url="{:url('human/tuwen')}"></van-cell>
  26. </van-cell-group>
  27. <van-tabbar v-model="active">
  28. <van-tabbar-item icon="home-o" @click="toEnterprise">企业列表</van-tabbar-item>
  29. <van-tabbar-item icon="friends-o" @click="toInstitution">机构列表</van-tabbar-item>
  30. <van-tabbar-item icon="manager-o">服务中心</van-tabbar-item>
  31. </van-tabbar>
  32. {/block}
  33. {block name="script"}
  34. <script>
  35. function v_setup() {
  36. let base = {};
  37. base.active = Vue.ref(2);
  38. base.showImage = () => {
  39. vant.showImagePreview([
  40. '/static/mobile/images/wechat_qrcode_institution.jpg',
  41. '/static/mobile/images/wechat_qrcode_enterprise.jpg',
  42. ]);
  43. };
  44. base.toInstitution = () => {
  45. location.href = "{:url('human/institutionList')}";
  46. };
  47. base.toEnterprise = () => {
  48. location.href = "{:url('human/enterpriseList')}";
  49. };
  50. return base;
  51. }
  52. </script>
  53. {/block}