开放平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

192 lines
3.7 KiB

  1. <template>
  2. <div class="index-footer-box">
  3. <div class="footer-top">
  4. <div class="data-table">
  5. <div v-for="(item, index) in tableData" :key="index" class="data-tr">
  6. <a
  7. :class="index == '0' ? 'data-th' : 'data-td'"
  8. v-for="(list, i) in item"
  9. :key="i"
  10. href="#"
  11. >{{ list.title }}</a
  12. >
  13. </div>
  14. </div>
  15. <div class="footer-code">
  16. <div style="margin-right:40px">
  17. <div>联系我们</div>
  18. <img style="margin-top:10px" src="@/static/img/qiye.png" alt="" />
  19. </div>
  20. <div>
  21. <img src="@/static/img/weixin.png" alt="" />
  22. </div>
  23. </div>
  24. </div>
  25. <div class="footer-bottom">
  26. <div>© 2008-2020 珠海方诺信息科技有限公司 版权所有 粤ICP备13020798号</div>
  27. <div style="margin-bottom: 10px;">粤公网安备 44049002000552号</div>
  28. </div>
  29. </div>
  30. </template>
  31. <script>
  32. export default {
  33. name: "index-footer",
  34. data() {
  35. return {
  36. tableData: [
  37. [
  38. {
  39. title: "新手指南",
  40. },
  41. {
  42. title: "服务支持",
  43. },
  44. {
  45. title: "常见问题",
  46. },
  47. {
  48. title: "用户中心",
  49. },
  50. {
  51. title: "关于智莺",
  52. },
  53. ],
  54. [
  55. {
  56. title: "新手指南",
  57. },
  58. {
  59. title: "客服在线",
  60. },
  61. {
  62. title: "智莺系统免费吗",
  63. },
  64. {
  65. title: "会员管理",
  66. },
  67. {
  68. title: "智莺首页",
  69. },
  70. ],
  71. [
  72. {
  73. title: "快速选购",
  74. },
  75. {
  76. title: "购买咨询",
  77. },
  78. {
  79. title: "如何购买插件",
  80. },
  81. {
  82. title: "网站管理",
  83. },
  84. {
  85. title: "联系我们",
  86. },
  87. ],
  88. [
  89. {
  90. title: "互动专区",
  91. },
  92. {
  93. title: "联系智莺",
  94. },
  95. {
  96. title: "有几种模式可选",
  97. },
  98. {
  99. title: "插件订单",
  100. },
  101. {
  102. title: "人才招聘",
  103. },
  104. ],
  105. [
  106. {
  107. title: "有问必答",
  108. },
  109. {
  110. title: "帮助中心",
  111. },
  112. {
  113. title: "如何选购版本",
  114. },
  115. {
  116. title: "主机域名",
  117. },
  118. {
  119. title: "帮助中心",
  120. },
  121. ],
  122. ],
  123. };
  124. },
  125. };
  126. </script>
  127. <style lang="scss" scoped>
  128. a {
  129. text-decoration: none;
  130. color: black;
  131. }
  132. .index-footer-box {
  133. width: 1200px;
  134. margin: 220px auto 0;
  135. display: flex;
  136. flex-flow: column;
  137. padding-bottom: 30px;
  138. .footer-top {
  139. display: flex;
  140. flex-flow: row nowrap;
  141. justify-content: space-between;
  142. .data-table {
  143. font-size: 13px;
  144. display: flex;
  145. flex-flow: column;
  146. .data-tr {
  147. margin-bottom: 20px;
  148. .data-th {
  149. color: #333333;
  150. font-weight: bold;
  151. margin-right: 40px;
  152. width: 91px;
  153. display: inline-block;
  154. }
  155. .data-td {
  156. color: #666666;
  157. margin-right: 40px;
  158. width: 91px;
  159. display: inline-block;
  160. }
  161. }
  162. .data-th:last-child,
  163. .data-td:last-child,
  164. .data-tr:last-child {
  165. margin: 0;
  166. }
  167. }
  168. }
  169. .footer-bottom {
  170. text-align: center;
  171. color: #666666;
  172. font-size: 14px;
  173. margin-top: 50px;
  174. }
  175. .footer-code {
  176. display: flex;
  177. align-items: flex-end
  178. }
  179. }
  180. </style>