footer.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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 :href="item.url" v-for="(item,index) in requestData" :key="index">{{item.name}}</a>
  46. </div>
  47. </div>
  48. <h5>Copyright © 2019 llisoft.com All rights reserved 大连栋科软件工程有限公司 版权所有 辽ICP备09022904号-19</h5>
  49. </div>
  50. </div>
  51. </template>
  52. <script>
  53. import { mapState, mapGetters } from 'vuex';
  54. export default {
  55. name: 'mtaFooter',
  56. computed: {
  57. requestData() {
  58. return this.getFooterYouQingLianJie;
  59. },
  60. ...mapGetters(['getFooterYouQingLianJie']),
  61. },
  62. methods: {
  63. goToPage(item){
  64. window.location.href = item.url
  65. }
  66. },
  67. }
  68. </script>