footer.vue 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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/helpks/795846" target="_blank">考试文档</a></dd>
  21. <dd><a rel="nofollow" href="https://www.kancloud.cn/yhm-122130/mtapx/814265" 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. <h3>400-052-2130</h3>
  38. <p>周一至周日9:00-18:00</p>
  39. <p>(仅收市话费)</p>
  40. <a href="http://p.qiao.baidu.com/cps/chat?siteId=11735491&amp;userId=10530011" target="_blank">联系客服</a>
  41. </div>
  42. </div>
  43. <div class="link-box">
  44. <h4>友情链接</h4>
  45. <div class="link-a-box">
  46. <a :href="item.url" v-for="(item,index) in requestData" :key="index">{{item.name}}</a>
  47. </div>
  48. </div>
  49. <h5>Copyright © 2019 llisoft.com All rights reserved 大连栋科软件工程有限公司 版权所有 辽ICP备09022904号-19</h5>
  50. </div>
  51. </div>
  52. </template>
  53. <script>
  54. import { mapState, mapGetters } from 'vuex';
  55. export default {
  56. name: 'mtaFooter',
  57. computed: {
  58. requestData() {
  59. return this.getFooterYouQingLianJie;
  60. },
  61. ...mapGetters(['getFooterYouQingLianJie']),
  62. },
  63. methods: {
  64. goToPage(item){
  65. window.location.href = item.url
  66. },
  67. // 考试链接
  68. goExamPage(){
  69. this.$router.push({ name: 'examsystem' });
  70. },
  71. // 培训链接
  72. goPeixunPage(){
  73. this.$router.push({ name: 'trainsystem' });
  74. },
  75. // 课程开发链接
  76. goKechengPage(){
  77. this.$router.push({ name: 'courseware' });
  78. },
  79. // 关于帮助中心
  80. goaboutUs(){
  81. this.$router.push({ name: 'introduction' });
  82. },
  83. },
  84. }
  85. </script>