footer.vue 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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 @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" 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" target="_blank">考试文档</a></dd>
  21. <dd><a rel="nofollow" href="https://www.kancloud.cn/yhm-122130/mtapx_new/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" target="_blank">培训文档</a></dd>
  22. <!--<dd><a rel="nofollow" href="https://cdnks.mtavip.com/a/register?flug=1" target="_blank">应用下载</a></dd>-->
  23. </dl>
  24. <!-- <dl>
  25. <dt>法律声明</dt>
  26. <dd>服务条款</dd>
  27. <dd>隐私声明</dd>
  28. <dd>知识维权</dd>
  29. </dl>-->
  30. <dl>
  31. <dt>关注我们</dt>
  32. <dd class="two-code-box">微信公众号<i class="two-dimensional-code"></i></dd>
  33. <!--<dd>新浪微博</dd>-->
  34. </dl>
  35. </div>
  36. <div class="contact-right-box">
  37. <div class="right-sw-box">
  38. <h4>商务合作微信</h4>
  39. <img :src="swTwoCodeImg" alt="商务合作扫微信"/>
  40. </div>
  41. <div style="vertical-align: top;">
  42. <h3>400-052-2130</h3>
  43. <p>周一至周日9:00-18:00</p>
  44. <p>(仅收市话费)</p>
  45. <a href="http://p.qiao.baidu.com/cps/chat?siteId=11735491&amp;userId=10530011" target="_blank">联系客服</a>
  46. </div>
  47. </div>
  48. </div>
  49. <div class="link-box">
  50. <h4>友情链接</h4>
  51. <div class="link-a-box">
  52. <a :href="item.url" v-for="(item,index) in requestData" :key="index">{{item.name}}</a>
  53. </div>
  54. </div>
  55. <h5>Copyright © 2019 llisoft.com All rights reserved 大连栋科软件工程有限公司 版权所有 辽ICP备09022904号-19</h5>
  56. </div>
  57. </div>
  58. </template>
  59. <script>
  60. import { mapState, mapGetters } from 'vuex';
  61. export default {
  62. name: 'mtaFooter',
  63. computed: {
  64. requestData() {
  65. return this.getFooterYouQingLianJie;
  66. },
  67. ...mapGetters(['getFooterYouQingLianJie']),
  68. },
  69. data() {
  70. return {
  71. swTwoCodeImg: require(`~/static/images/client/component/sw-two-code.jpg`),
  72. }
  73. },
  74. methods: {
  75. goToPage(item){
  76. window.location.href = item.url
  77. },
  78. // 考试链接
  79. goExamPage(){
  80. this.$router.push({ name: 'examsystem' });
  81. },
  82. // 培训链接
  83. goPeixunPage(){
  84. this.$router.push({ name: 'trainsystem' });
  85. },
  86. // 课程开发链接
  87. goKechengPage(){
  88. this.$router.push({ name: 'courseware' });
  89. },
  90. // 关于帮助中心
  91. goaboutUs(){
  92. this.$router.push({ name: 'introduction' });
  93. },
  94. },
  95. }
  96. </script>