footer.vue 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. swTwoCodeImg: require(`~/static/images/client/component/sw-two-code.png`),
  31. footerData: [
  32. {
  33. name: '首页',
  34. url: '/',
  35. },
  36. {
  37. name: '体验中心',
  38. url: '/tiyanCenter',
  39. },
  40. {
  41. name: '电话咨询',
  42. url: 'tel:400-052-2130',
  43. },
  44. {
  45. name: '在线咨询',
  46. url: 'https://p.qiao.baidu.com/cps/chat?siteId=17930048&userId=40179606&siteToken=e767a987c8404575246ab0084fb2c9bd',
  47. }
  48. ]
  49. }
  50. },
  51. methods: {
  52. checkNews(item) {
  53. const opt = {
  54. id: item.code,
  55. };
  56. this.$router.push({ name: 'news-id', params: opt });
  57. },
  58. goToPage(item) {
  59. window.location.href = item.url
  60. },
  61. // 考试链接
  62. goExamPage() {
  63. this.$router.push({name: 'examsystem'});
  64. },
  65. // 培训链接
  66. goPeixunPage() {
  67. this.$router.push({name: 'trainsystem'});
  68. },
  69. // 课程开发链接
  70. goKechengPage() {
  71. this.$router.push({ path: '/courseware/synopsis' });
  72. },
  73. // 关于帮助中心
  74. goaboutUs() {
  75. this.$router.push({name: 'introduction'});
  76. },
  77. // 合作商
  78. goHzs(){
  79. this.$router.push({ name: 'urbanPartners' });
  80. },
  81. },
  82. }
  83. </script>