footer.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <template>
  2. <div class="client-footer">
  3. <div class="client-container">
  4. <div class="contact-box">
  5. <div class="contact-left-box">
  6. <dl>
  7. <dt>产品服务</dt>
  8. <dd>考试平台</dd>
  9. <dd>培训平台</dd>
  10. <dd>课程开发</dd>
  11. </dl>
  12. <dl>
  13. <dt>关于栋科</dt>
  14. <dd>公司简介</dd>
  15. <dd>加入栋科</dd>
  16. <dd>联系我们</dd>
  17. </dl>
  18. <dl>
  19. <dt>帮助中心</dt>
  20. <dd>说明文档</dd>
  21. <dd>应用下载</dd>
  22. </dl>
  23. <dl>
  24. <dt>法律声明</dt>
  25. <dd>服务条款</dd>
  26. <dd>隐私声明</dd>
  27. <dd>知识维权</dd>
  28. </dl>
  29. <dl>
  30. <dt>关注我们</dt>
  31. <dd>微信公众号</dd>
  32. <dd>新浪微博</dd>
  33. </dl>
  34. </div>
  35. <div class="contact-right-box">
  36. <h3>400-052-2130</h3>
  37. <p>周一至周日9:00-18:00</p>
  38. <p>(仅收市话费)</p>
  39. <a>联系客服</a>
  40. </div>
  41. </div>
  42. <div class="link-box">
  43. <h4>友情链接</h4>
  44. <div class="link-a-box">
  45. <a v-for="(item,index) in linksData" :key="index" @click="goToPage(item)">{{item.name}}</a>
  46. <!-- <a>物流软件</a>
  47. <a>免费erp管理系统</a>
  48. <a>物流软件</a>
  49. <a>免费erp管理系统</a>
  50. <a>物流软件</a>
  51. <a>免费erp管理系统</a>
  52. <a>物流软件</a>
  53. <a>免费erp管理系统</a>
  54. <a>物流软件</a>
  55. <a>新零售系统</a>
  56. <a>物流软件</a>
  57. <a>新零售系统</a>
  58. <a>物流软件</a>
  59. <a>新零售系统</a>
  60. <a>物流软件</a>
  61. <a>新零售系统</a>
  62. <a>物流软件</a>
  63. <a>新零售系统</a>
  64. <a>物流软件</a>
  65. <a>新零售系统</a>-->
  66. </div>
  67. </div>
  68. <h5>Copyright © 2019 llisoft.com All rights reserved 大连栋科软件工程有限公司 版权所有 辽ICP备09022904号-19</h5>
  69. </div>
  70. </div>
  71. </template>
  72. <script>
  73. import { mapGetters } from 'vuex'
  74. import { homeLinksList } from '@/api/login.js';
  75. export default {
  76. name: 'mtaFooter',
  77. computed: {
  78. },
  79. props: {
  80. activeNav: {},
  81. },
  82. data() {
  83. return {
  84. linksData:[]
  85. };
  86. },
  87. watch: {
  88. },
  89. methods: {
  90. getLinksData(){
  91. homeLinksList().then(res=>{
  92. if(res.code===0){
  93. console.log(res.data.data);
  94. this.linksData = res.data.data
  95. console.log(this.linksData);
  96. }
  97. })
  98. },
  99. goToPage(item){
  100. window.location.href = item.url
  101. }
  102. },
  103. created() {
  104. this.getLinksData()
  105. }
  106. };
  107. </script>