| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <!--无友情链接 footer-->
- <template>
- <div class="client-footer">
- <div class="client-container">
- <div class="footer-content-box">
- <p>联系电话:010-88888888</p>
- <p>地址:北京市昌平区北清路1号院6号楼11层2单元1209-B</p>
- <p>官方邮箱:980182871@qq.com</p>
- <p>北京诚祥教育咨询有限公司关联技术支持</p>
- </div>
- <h5>Copyright 2025.com All rights reserved 版权所有
- <a style="color: #b8e9e1" href="https://beian.miit.gov.cn/#/Integrated/index">京ICP备2025114814号-1</a></h5>
- </div>
- </div>
- </template>
- <script>
- import { mapState, mapGetters } from 'vuex';
- export default {
- name: 'mtaFooter',
- computed: {
- hotList() {
- return this.getHotList;
- },
- ...mapGetters(['getHotList']),
- },
- data() {
- return {
- }
- },
- methods: {
- checkNews(item) {
- const opt = {
- id: item.code,
- };
- this.$router.push({ name: 'news-id', params: opt });
- },
- // 考试链接
- goExamPage(){
- this.$router.push({ name: 'examsystem' });
- },
- // 培训链接
- goPeixunPage(){
- this.$router.push({ name: 'trainsystem' });
- },
- // 课程开发链接
- goKechengPage(){
- this.$router.push({ path: '/courseware/synopsis' });
- },
- // 关于帮助中心
- goaboutUs(){
- this.$router.push({ name: 'introduction' });
- },
- // 合作商
- goHzs(){
- this.$router.push({ name: 'urbanPartners' });
- },
- },
- }
- </script>
|