footer2.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <!--无友情链接 footer-->
  2. <template>
  3. <div class="client-footer">
  4. <div class="client-container">
  5. <div class="contact-box">
  6. <div class="contact-left-box">
  7. <dl>
  8. <dt>产品服务</dt>
  9. <dd @click="goExamPage">考试平台</dd>
  10. <dd @click="goPeixunPage">培训平台</dd>
  11. <dd @click="goKechengPage">课程开发</dd>
  12. </dl>
  13. <dl>
  14. <dt>关于栋科</dt>
  15. <dd @click="goaboutUs">公司简介</dd>
  16. <dd @click="goaboutUs">加入栋科</dd>
  17. <dd @click="goaboutUs">联系我们</dd>
  18. </dl>
  19. <dl>
  20. <dt>帮助中心</dt>
  21. <dd><a rel="nofollow" href="https://www.kancloud.cn/yhm-122130/helpks/795846" target="_blank">考试文档</a></dd>
  22. <dd><a rel="nofollow" href="https://www.kancloud.cn/yhm-122130/mtapx/814265" target="_blank">培训文档</a></dd>
  23. <!--<dd><a rel="nofollow" href="https://cdnks.mtavip.com/a/register?flug=1" target="_blank">应用下载</a></dd>-->
  24. </dl>
  25. <!--<dl>
  26. <dt>法律声明</dt>
  27. <dd>服务条款</dd>
  28. <dd>隐私声明</dd>
  29. <dd>知识维权</dd>
  30. </dl>-->
  31. <dl>
  32. <dt>关注我们</dt>
  33. <dd class="two-code-box">微信公众号<i class="two-dimensional-code"></i></dd>
  34. <!--<dd>新浪微博</dd>-->
  35. </dl>
  36. </div>
  37. <div class="contact-right-box">
  38. <h3>400-052-2130</h3>
  39. <p>周一至周日9:00-18:00</p>
  40. <p>(仅收市话费)</p>
  41. <a href="http://p.qiao.baidu.com/cps/chat?siteId=11735491&amp;userId=10530011" target="_blank">联系客服</a>
  42. </div>
  43. </div>
  44. <h5>Copyright © 2019 llisoft.com All rights reserved 大连栋科软件工程有限公司 版权所有 辽ICP备09022904号-19</h5>
  45. </div>
  46. </div>
  47. </template>
  48. <script>
  49. import { mapState, mapGetters } from 'vuex';
  50. export default {
  51. name: 'mtaFooter',
  52. computed: {
  53. },
  54. methods: {
  55. // 考试链接
  56. goExamPage(){
  57. this.$router.push({ name: 'examsystem' });
  58. },
  59. // 培训链接
  60. goPeixunPage(){
  61. this.$router.push({ name: 'trainsystem' });
  62. },
  63. // 课程开发链接
  64. goKechengPage(){
  65. this.$router.push({ name: 'courseware' });
  66. },
  67. // 关于帮助中心
  68. goaboutUs(){
  69. this.$router.push({ name: 'introduction' });
  70. },
  71. },
  72. }
  73. </script>