| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <!--无友情链接 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备00000000号-00</a></h5>
- </div>
- </div>
- </template>
- <script>
- import { mapState, mapGetters } from 'vuex';
- export default {
- name: 'mtaFooter',
- computed: {
- hotList() {
- return this.getHotList;
- },
- ...mapGetters(['getHotList']),
- },
- data() {
- return {
- swTwoCodeImg: require(`~/static/images/client/component/sw-two-code.png`),
- }
- },
- 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>
|