footer.vue 2.4 KB

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