footer2.vue 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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/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>
  22. <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>
  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. <div class="right-sw-box">
  39. <h4>商务合作微信</h4>
  40. <img :src="swTwoCodeImg" alt="商务合作扫微信"/>
  41. </div>
  42. <div style="vertical-align: top;">
  43. <h3>400-052-2130</h3>
  44. <p>周一至周日9:00-18:00</p>
  45. <p>(仅收市话费)</p>
  46. <a href="http://p.qiao.baidu.com/cps/chat?siteId=11735491&amp;userId=10530011" target="_blank">联系客服</a>
  47. </div>
  48. </div>
  49. </div>
  50. <h5>Copyright © 2019 llisoft.com All rights reserved 大连栋科软件工程有限公司 版权所有 <a style="color: #B8B8BB" href="https://beian.miit.gov.cn/#/Integrated/index">辽ICP备09022904号-18</a></h5>
  51. </div>
  52. </div>
  53. </template>
  54. <script>
  55. import { mapState, mapGetters } from 'vuex';
  56. export default {
  57. name: 'mtaFooter',
  58. computed: {
  59. },
  60. data() {
  61. return {
  62. swTwoCodeImg: require(`~/static/images/client/component/sw-two-code.jpg`),
  63. }
  64. },
  65. methods: {
  66. // 考试链接
  67. goExamPage(){
  68. this.$router.push({ name: 'examsystem' });
  69. },
  70. // 培训链接
  71. goPeixunPage(){
  72. this.$router.push({ name: 'trainsystem' });
  73. },
  74. // 课程开发链接
  75. goKechengPage(){
  76. this.$router.push({ name: 'courseware' });
  77. },
  78. // 关于帮助中心
  79. goaboutUs(){
  80. this.$router.push({ name: 'introduction' });
  81. },
  82. },
  83. }
  84. </script>