|
@@ -0,0 +1,58 @@
|
|
|
+<template>
|
|
|
+ <div class="client-footer">
|
|
|
+ <el-menu
|
|
|
+ :default-active="activeNav"
|
|
|
+ :class="navClass"
|
|
|
+ mode="horizontal"
|
|
|
+ :router="false"
|
|
|
+ >
|
|
|
+ <template v-for="(item,index) in footerData" >
|
|
|
+ <el-menu-item :index="`${item.url}`" >
|
|
|
+ <nuxt-link :to="item.url">{{item.name}}</nuxt-link>
|
|
|
+ </el-menu-item>
|
|
|
+ </template>
|
|
|
+ </el-menu>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+ import {mapState, mapGetters} from 'vuex';
|
|
|
+
|
|
|
+ export default {
|
|
|
+ name: 'mtaFooter',
|
|
|
+ computed: {
|
|
|
+ activeNav() {
|
|
|
+ return this.getActiveNav;
|
|
|
+ },
|
|
|
+ ...mapGetters(['getActiveNav']),
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ navClass:'head-nav-up',
|
|
|
+ footerData: [
|
|
|
+ {
|
|
|
+ name: '首页',
|
|
|
+ url: '/',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: '体验中心',
|
|
|
+ url: '/tiyanCenter',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: '电话咨询',
|
|
|
+ url: 'tel:400-052-2130',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: '在线咨询',
|
|
|
+ url: 'http://p.qiao.baidu.com/cps/chat?siteId=11735491&userId=10530011',
|
|
|
+ }
|
|
|
+
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ methods: {
|
|
|
+
|
|
|
+ },
|
|
|
+ }
|
|
|
+</script>
|