footer.vue 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <template>
  2. <div class="client-footer">
  3. <div class="client-container">
  4. <div class="footer-content-box">
  5. <p>联系电话:010-88888888</p>
  6. <p>地址:北京市昌平区北清路1号院6号楼11层2单元1209-B</p>
  7. <p>官方邮箱:980182871@qq.com</p>
  8. <p>北京诚祥教育咨询有限公司关联技术支持</p>
  9. </div>
  10. <h5>Copyright 2025.com All rights reserved 版权所有
  11. <a style="color: #b8e9e1" href="https://beian.miit.gov.cn/#/Integrated/index">京ICP备2025114814号-1</a></h5>
  12. </div>
  13. </div>
  14. </template>
  15. <script>
  16. import {mapState, mapGetters} from 'vuex';
  17. export default {
  18. name: 'mtaFooter',
  19. computed: {
  20. requestData() {
  21. return this.getFooterYouQingLianJie;
  22. },
  23. hotList() {
  24. return this.getHotList;
  25. },
  26. ...mapGetters(['getFooterYouQingLianJie','getHotList']),
  27. },
  28. data() {
  29. return {
  30. footerData: [
  31. {
  32. name: '首页',
  33. url: '/',
  34. },
  35. {
  36. name: '体验中心',
  37. url: '/tiyanCenter',
  38. },
  39. {
  40. name: '电话咨询',
  41. url: 'tel:400-052-2130',
  42. },
  43. {
  44. name: '在线咨询',
  45. url: 'https://p.qiao.baidu.com/cps/chat?siteId=17930048&userId=40179606&siteToken=e767a987c8404575246ab0084fb2c9bd',
  46. }
  47. ]
  48. }
  49. },
  50. methods: {
  51. checkNews(item) {
  52. const opt = {
  53. id: item.code,
  54. };
  55. this.$router.push({ name: 'news-id', params: opt });
  56. },
  57. goToPage(item) {
  58. window.location.href = item.url
  59. },
  60. // 考试链接
  61. goExamPage() {
  62. this.$router.push({name: 'examsystem'});
  63. },
  64. // 培训链接
  65. goPeixunPage() {
  66. this.$router.push({name: 'trainsystem'});
  67. },
  68. // 课程开发链接
  69. goKechengPage() {
  70. this.$router.push({ path: '/courseware/synopsis' });
  71. },
  72. // 关于帮助中心
  73. goaboutUs() {
  74. this.$router.push({name: 'introduction'});
  75. },
  76. // 合作商
  77. goHzs(){
  78. this.$router.push({ name: 'urbanPartners' });
  79. },
  80. },
  81. }
  82. </script>