bottom.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. <template>
  2. <div class="bg">
  3. <div class="top">
  4. <div v-for="(item, idx) in foot.list" :key="idx">
  5. <div class="title">{{ item.title }}</div>
  6. <div
  7. class="item"
  8. @click="topage(child.url)"
  9. v-for="(child, index) in item.footer"
  10. :key="index"
  11. >
  12. {{ child.title }}
  13. </div>
  14. </div>
  15. <div>
  16. <div class="title">联系我们</div>
  17. <div class="item">售前电话:{{ foot.info.pre_sale_mobile }}</div>
  18. <div class="item">市场合作:{{ foot.info.market_cooperation }}</div>
  19. <div class="item">渠道合作:{{ foot.info.channel_cooperation }}</div>
  20. <div class="item">投诉电话:{{ foot.info.complaint_mobile }}</div>
  21. </div>
  22. <div>
  23. <div class="title">关注我们</div>
  24. <div class="item">{{ foot.info.service_time }}</div>
  25. <div class="img">
  26. <img class="image" :src="foot.info.service_qr_code" alt="" />
  27. <img class="image" :src="foot.info.official_qr_code" alt="" />
  28. </div>
  29. </div>
  30. </div>
  31. <div class="center">
  32. <div>
  33. <div class="emil">官方邮箱:{{ foot.info.email }}</div>
  34. <div class="address">{{ foot.info.address }}</div>
  35. </div>
  36. <div>
  37. <!-- <div class="logo"></div> -->
  38. <img class="logo" :src="foot.info.logo" alt="" />
  39. </div>
  40. </div>
  41. <div class="line"></div>
  42. <div class="bottom_font">{{ foot.info.copyright }}</div>
  43. </div>
  44. </template>
  45. <script setup lang="ts">
  46. import { useRouter } from "vue-router";
  47. import { onMounted, reactive, ref } from "vue";
  48. import * as tongApi from "../../api/tongyong";
  49. import * as configApi from "../../api/config";
  50. const router = useRouter();
  51. const foot = reactive({
  52. list: [],
  53. info: {},
  54. });
  55. //页脚
  56. const list = async () => {
  57. try {
  58. const { data } = await tongApi.footer({});
  59. foot.list = data;
  60. } catch (error) {}
  61. };
  62. onMounted(list);
  63. //基本信息
  64. const info = async () => {
  65. try {
  66. const { data } = await configApi.config({
  67. module: "basic",
  68. });
  69. foot.info = data;
  70. } catch (error) {}
  71. };
  72. onMounted(info);
  73. const topage = (url) => {
  74. window.location.href = url
  75. };
  76. </script>
  77. <style lang="scss" scoped>
  78. .bottom_font {
  79. font-family: SFPro, SFPro;
  80. font-weight: 400;
  81. font-size: 14px;
  82. color: rgba(255, 255, 255, 0.6);
  83. line-height: 16px;
  84. text-align: justify;
  85. font-style: normal;
  86. text-align: center;
  87. margin-top: 20px;
  88. }
  89. .line {
  90. height: 1px;
  91. opacity: 0.2;
  92. margin-top: 26px;
  93. background: #979797;
  94. }
  95. .center {
  96. margin-top: 60px;
  97. display: flex;
  98. justify-content: space-between;
  99. align-items: center;
  100. .address {
  101. font-family: PingFangSC, PingFang SC;
  102. font-weight: 400;
  103. font-size: 12px;
  104. color: rgba(255, 255, 255, 0.5);
  105. line-height: 22px;
  106. text-align: justify;
  107. font-style: normal;
  108. margin-top: 10px;
  109. }
  110. .emil {
  111. font-family: PingFangSC, PingFang SC;
  112. font-weight: 400;
  113. font-size: 12px;
  114. color: #ffffff;
  115. line-height: 17px;
  116. text-align: justify;
  117. font-style: normal;
  118. }
  119. .logo {
  120. width: 104px;
  121. height: 100px;
  122. // background: #d8d8d8;
  123. }
  124. }
  125. .top {
  126. display: flex;
  127. justify-content: space-between;
  128. .img {
  129. margin: 20px 0 0 0;
  130. .image {
  131. width: 72px;
  132. height: 72px;
  133. margin-right: 20px;
  134. }
  135. }
  136. }
  137. .bg {
  138. width: 1920px;
  139. // height: 480px;
  140. background: #131415;
  141. padding: 65px 360px;
  142. box-sizing: border-box;
  143. }
  144. .title {
  145. font-family: PingFangSC, PingFang SC;
  146. font-weight: 500;
  147. font-size: 16px;
  148. color: #ffffff;
  149. line-height: 22px;
  150. text-align: justify;
  151. font-style: normal;
  152. }
  153. .item {
  154. font-family: PingFangSC, PingFang SC;
  155. font-weight: 400;
  156. font-size: 14px;
  157. color: rgba(255, 255, 255, 0.5);
  158. line-height: 20px;
  159. text-align: justify;
  160. font-style: normal;
  161. margin-top: 14px;
  162. cursor: pointer;
  163. }
  164. </style>