footer.vue 4.2 KB

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