footer.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <template>
  2. <div class="box">
  3. <div class="top wid d-flex justify-space-between">
  4. <div class="left">
  5. <h4>联系我们</h4>
  6. <div class="mt-5 size">
  7. <div>苏州识喜识谊信息科技有限公司</div>
  8. <div class="my-3">公司地址&nbsp;苏州工业园区林泉街399号东南大学国家大学科技园(苏州)南工院(2#)304室</div>
  9. <div>服务热线/举报渠道&nbsp;4000xxxx</div>
  10. </div>
  11. </div>
  12. <div class="center">
  13. <h4>使用与帮助</h4>
  14. <div class="mt-5 size">
  15. <a href="/userAgreement">用户协议</a>
  16. <a class="my-3" href="/privacyPolicy">隐私协议</a>
  17. <a>使用与帮助</a>
  18. </div>
  19. </div>
  20. <div class="right size d-flex">
  21. <div>
  22. <v-img :width="100" cover aspect-ratio="16/9" src="https://minio.citupro.com/dev/static/mendunerCode.jpg" style="height: 100px;"></v-img>
  23. <div class="mt-2" style="text-align: center;">微信公众号</div>
  24. </div>
  25. <div class="ml-5">
  26. <v-img :width="100" cover aspect-ratio="16/9" src="https://minio.citupro.com/dev/static/emw.png" style="height: 100px;"></v-img>
  27. <div class="mt-2" style="text-align: center;">小程序</div>
  28. </div>
  29. </div>
  30. </div>
  31. <div class="bottom wid mt-7">
  32. <span class="size mr-7 second" v-for="(item, i) in list" :key="i">{{ item.label }}</span>
  33. </div>
  34. </div>
  35. </template>
  36. <script setup>
  37. defineOptions({ name: 'personal-footer' })
  38. const list = [
  39. { label: 'Copyright © 2024招聘人才网', path: '' },
  40. { label: '苏ICP备2021021762号-1', path: '' },
  41. { label: '苏ICP备18037702号-1', path: '' },
  42. { label: '电子营业执照', path: '', img: '' },
  43. { label: '公安备案号 32059002001928', path: '', img: '' },
  44. { label: '人力资源服务许可证', path: '' }
  45. ]
  46. </script>
  47. <style scoped lang="scss">
  48. .box {
  49. width: 100%;
  50. height: 225px;
  51. color: #fff;
  52. background-color: #313438;
  53. padding: 30px 0;
  54. }
  55. .wid {
  56. width: 1184px;
  57. max-width: 1184px;
  58. margin: auto;
  59. }
  60. .size {
  61. color: #ffffff80;
  62. font-size: 12px;
  63. }
  64. .second {
  65. cursor: pointer;
  66. }
  67. a {
  68. display: block;
  69. cursor: pointer;
  70. color: #ffffff80;
  71. text-decoration: none;
  72. &:hover {
  73. color: var(--v-primary-base);
  74. }
  75. }
  76. .bottom span:hover {
  77. color: var(--v-primary-base);
  78. }
  79. .second div:hover {
  80. color: var(--v-primary-base);
  81. }
  82. </style>