footer.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <template>
  2. <div class="client-footer">
  3. <div class="client-container mta-hidden-xs">
  4. <div class="contact-box">
  5. <div class="contact-left-box">
  6. <dl>
  7. <dt>产品服务</dt>
  8. <dd @click="goExamPage">考试平台</dd>
  9. <dd @click="goPeixunPage">培训平台</dd>
  10. <dd @click="goKechengPage">课程开发</dd>
  11. </dl>
  12. <dl>
  13. <dt>关于栋科</dt>
  14. <dd @click="goaboutUs">公司简介</dd>
  15. <dd @click="goaboutUs">加入栋科</dd>
  16. <dd @click="goaboutUs">联系我们</dd>
  17. </dl>
  18. <dl>
  19. <dt>帮助中心</dt>
  20. <dd><a rel="nofollow"
  21. href="https://www.kancloud.cn/yhm-122130/mtaks2020/content/%E4%BA%8C%E7%BA%A7%E7%AE%A1%E7%90%86%E5%91%98%E8%AE%BE%E7%BD%AE%E5%8A%9F%E8%83%BD%E8%AF%B4%E6%98%8E.md"
  22. target="_blank">考试文档</a></dd>
  23. <dd><a rel="nofollow"
  24. href="https://www.kancloud.cn/yhm-122130/mtapx_new/content/%E4%BA%BA%E5%91%98%E7%AE%A1%E7%90%86%E5%8A%9F%E8%83%BD%E4%BB%8B%E7%BB%8D.md"
  25. target="_blank">培训文档</a></dd>
  26. <!--<dd><a rel="nofollow" href="https://cdnks.mtavip.com/a/register?flug=1" target="_blank">应用下载</a></dd>-->
  27. </dl>
  28. <!-- <dl>
  29. <dt>法律声明</dt>
  30. <dd>服务条款</dd>
  31. <dd>隐私声明</dd>
  32. <dd>知识维权</dd>
  33. </dl>-->
  34. <dl>
  35. <dt>关注我们</dt>
  36. <dd class="two-code-box">微信公众号<i class="two-dimensional-code"></i></dd>
  37. <!--<dd>新浪微博</dd>-->
  38. </dl>
  39. </div>
  40. <div class="contact-right-box">
  41. <div class="right-sw-box">
  42. <h4>商务合作微信</h4>
  43. <img :src="swTwoCodeImg" alt="商务合作扫微信"/>
  44. </div>
  45. <div style="vertical-align: top;">
  46. <h3>400-052-2130</h3>
  47. <p>周一至周日9:00-18:00</p>
  48. <p>(仅收市话费)</p>
  49. <a href="http://p.qiao.baidu.com/cps/chat?siteId=11735491&amp;userId=10530011" target="_blank">联系客服</a>
  50. </div>
  51. </div>
  52. </div>
  53. <div class="link-box">
  54. <h4>友情链接</h4>
  55. <div class="link-a-box">
  56. <a :href="item.url" v-for="(item,index) in requestData" :key="index">{{item.name}}</a>
  57. </div>
  58. </div>
  59. <h5>Copyright © 2019 llisoft.com All rights reserved 大连栋科软件工程有限公司 版权所有 <a style="color: #B8B8BB"
  60. href="https://beian.miit.gov.cn/#/Integrated/index">
  61. 辽ICP备09022904号-18</a></h5>
  62. </div>
  63. <div class="mta-hidden-sm phone-footer-box">
  64. <p>Copyright © 2019 llisoft.com All rights reserved</p>
  65. <p>大连栋科软件工程有限公司 版权所有</p>
  66. <a href="https://beian.miit.gov.cn/#/Integrated/index">辽ICP备09022904号-18</a>
  67. </div>
  68. </div>
  69. </template>
  70. <script>
  71. import {mapState, mapGetters} from 'vuex';
  72. export default {
  73. name: 'mtaFooter',
  74. computed: {
  75. requestData() {
  76. return this.getFooterYouQingLianJie;
  77. },
  78. ...mapGetters(['getFooterYouQingLianJie']),
  79. },
  80. data() {
  81. return {
  82. swTwoCodeImg: require(`~/static/images/client/component/sw-two-code.jpg`),
  83. footerData: [
  84. {
  85. name: '首页',
  86. url: '/',
  87. },
  88. {
  89. name: '体验中心',
  90. url: '/tiyanCenter',
  91. },
  92. {
  93. name: '电话咨询',
  94. url: 'tel:400-052-2130',
  95. },
  96. {
  97. name: '在线咨询',
  98. url: 'http://p.qiao.baidu.com/cps/chat?siteId=11735491&amp;userId=10530011',
  99. }
  100. ]
  101. }
  102. },
  103. methods: {
  104. goToPage(item) {
  105. window.location.href = item.url
  106. },
  107. // 考试链接
  108. goExamPage() {
  109. this.$router.push({name: 'examsystem'});
  110. },
  111. // 培训链接
  112. goPeixunPage() {
  113. this.$router.push({name: 'trainsystem'});
  114. },
  115. // 课程开发链接
  116. goKechengPage() {
  117. this.$router.push({name: 'courseware'});
  118. },
  119. // 关于帮助中心
  120. goaboutUs() {
  121. this.$router.push({name: 'introduction'});
  122. },
  123. },
  124. }
  125. </script>