footer2.vue 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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备00000000号-00</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. swTwoCodeImg: require(`~/static/images/client/component/sw-two-code.png`),
  29. }
  30. },
  31. methods: {
  32. checkNews(item) {
  33. const opt = {
  34. id: item.code,
  35. };
  36. this.$router.push({ name: 'news-id', params: opt });
  37. },
  38. // 考试链接
  39. goExamPage(){
  40. this.$router.push({ name: 'examsystem' });
  41. },
  42. // 培训链接
  43. goPeixunPage(){
  44. this.$router.push({ name: 'trainsystem' });
  45. },
  46. // 课程开发链接
  47. goKechengPage(){
  48. this.$router.push({ path: '/courseware/synopsis' });
  49. },
  50. // 关于帮助中心
  51. goaboutUs(){
  52. this.$router.push({ name: 'introduction' });
  53. },
  54. // 合作商
  55. goHzs(){
  56. this.$router.push({ name: 'urbanPartners' });
  57. },
  58. },
  59. }
  60. </script>