Footer.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <template>
  2. <div class="footer">
  3. <div class="agreement-box">
  4. <div
  5. class="agreement-item"
  6. v-for="item in agreement_list"
  7. @click="item.click(item)"
  8. >
  9. {{ item.label }}
  10. </div>
  11. </div>
  12. <div class="company-info">
  13. <a href="https://beian.miit.gov.cn"
  14. >crypto @ 辽宁搞一下汽车电子科技有限公司 辽ICP备2023000001号-1</a
  15. >
  16. </div>
  17. </div>
  18. </template>
  19. <script>
  20. export default {
  21. name: "Footer",
  22. computed: {
  23. agreement_list() {
  24. return [
  25. {
  26. label: "用户协议",
  27. key: "agreement",
  28. click: this.toAgreement,
  29. },
  30. {
  31. label: "隐私政策",
  32. key: "privacy",
  33. click: this.toAgreement,
  34. },
  35. {
  36. label: "关于我们",
  37. key: "about_us",
  38. click: this.toAgreement,
  39. },
  40. {
  41. label: "客服中心",
  42. key: "customer_service",
  43. click: () => this.$store.commit("OPEN_CONTACT"),
  44. },
  45. {
  46. label: "会员说明",
  47. key: "user_equity",
  48. click: this.toAgreement,
  49. },
  50. {
  51. label: "原创公约",
  52. key: "original_pact",
  53. click: this.toAgreement,
  54. },
  55. ];
  56. },
  57. },
  58. methods: {
  59. toAgreement(item) {
  60. this.$router.push({
  61. path: "/agreement",
  62. query: {
  63. configKey: item.key,
  64. },
  65. });
  66. },
  67. },
  68. };
  69. </script>
  70. <style lang="scss" scoped>
  71. .footer {
  72. margin-top: 60px;
  73. width: 100%;
  74. .agreement-box {
  75. display: flex;
  76. align-items: center;
  77. justify-content: center;
  78. .agreement-item {
  79. padding: 0 10px;
  80. height: 10px;
  81. line-height: 10px;
  82. font-size: 12px;
  83. font-weight: 400;
  84. color: #666666;
  85. cursor: pointer;
  86. }
  87. :not(:last-child) {
  88. border-right: 1px solid #666666;
  89. }
  90. }
  91. .company-info {
  92. width: 100%;
  93. text-align: center;
  94. margin: 40px 0;
  95. a {
  96. font-size: 12px;
  97. font-weight: 400;
  98. color: #999999;
  99. text-decoration: none;
  100. margin: 0 auto;
  101. }
  102. }
  103. }
  104. </style>