footer2.vue 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <!--无友情链接 footer-->
  2. <template>
  3. <div class="client-footer">
  4. <div class="client-container">
  5. <div class="footer-content-box">
  6. <p>联系电话:010-88888888</p>
  7. <p>地址:北京市昌平区北清路1号院6号楼11层2单元1209-B</p>
  8. <p>官方邮箱:980182871@qq.com</p>
  9. <p>北京诚祥教育咨询有限公司关联技术支持</p>
  10. </div>
  11. <h5>Copyright 2025.com All rights reserved 版权所有
  12. <a style="color: #b8e9e1" href="https://beian.miit.gov.cn/#/Integrated/index">京ICP备2025114814号-1</a></h5>
  13. </div>
  14. </div>
  15. </template>
  16. <script>
  17. import { mapState, mapGetters } from 'vuex';
  18. export default {
  19. name: 'mtaFooter',
  20. computed: {
  21. hotList() {
  22. return this.getHotList;
  23. },
  24. ...mapGetters(['getHotList']),
  25. },
  26. data() {
  27. return {
  28. }
  29. },
  30. methods: {
  31. checkNews(item) {
  32. const opt = {
  33. id: item.code,
  34. };
  35. this.$router.push({ name: 'news-id', params: opt });
  36. },
  37. // 考试链接
  38. goExamPage(){
  39. this.$router.push({ name: 'examsystem' });
  40. },
  41. // 培训链接
  42. goPeixunPage(){
  43. this.$router.push({ name: 'trainsystem' });
  44. },
  45. // 课程开发链接
  46. goKechengPage(){
  47. this.$router.push({ path: '/courseware/synopsis' });
  48. },
  49. // 关于帮助中心
  50. goaboutUs(){
  51. this.$router.push({ name: 'introduction' });
  52. },
  53. // 合作商
  54. goHzs(){
  55. this.$router.push({ name: 'urbanPartners' });
  56. },
  57. },
  58. }
  59. </script>