footer.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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 requestData" :key="index" @click="goToPage(item)">{{item.name}}</a>-->
  46. <a :href="item.url" v-for="(item,index) in requestData" :key="index">{{item.name}}</a>
  47. <!-- <a>物流软件</a>
  48. <a>免费erp管理系统</a>
  49. <a>物流软件</a>
  50. <a>免费erp管理系统</a>
  51. <a>物流软件</a>
  52. <a>免费erp管理系统</a>
  53. <a>物流软件</a>
  54. <a>免费erp管理系统</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. <a>新零售系统</a>-->
  67. </div>
  68. </div>
  69. <h5>Copyright © 2019 llisoft.com All rights reserved 大连栋科软件工程有限公司 版权所有 辽ICP备09022904号-19</h5>
  70. </div>
  71. </div>
  72. </template>
  73. <script>
  74. import { mapState, mapGetters } from 'vuex';
  75. export default {
  76. name: 'mtaFooter',
  77. computed: {
  78. requestData() {
  79. return this.getFooterYouQingLianJie;
  80. },
  81. ...mapGetters(['getFooterYouQingLianJie']),
  82. },
  83. methods: {
  84. goToPage(item){
  85. window.location.href = item.url
  86. }
  87. },
  88. }
  89. </script>