mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-12-01 03:38:30 +08:00
4ccb8ea9ae
* init i18n * update router * finish router * Review: message/messageBox/notification * Tag: update doc * Review: pagination/popover/progress * i18n: sync with master
121 lines
2.4 KiB
Vue
121 lines
2.4 KiB
Vue
<template>
|
|
<div class="footer-nav">
|
|
<span
|
|
v-if="leftNav"
|
|
class="footer-nav-link footer-nav-left"
|
|
@click="handleNavClick('prev')">
|
|
<i class="el-icon-arrow-left"></i>
|
|
{{ leftNav.title || leftNav.name }}
|
|
</span>
|
|
<span
|
|
v-if="rightNav"
|
|
class="footer-nav-link footer-nav-right"
|
|
@click="handleNavClick('next')">
|
|
{{ rightNav.title || rightNav.name }}
|
|
<i class="el-icon-arrow-right"></i>
|
|
</span>
|
|
</div>
|
|
</template>
|
|
|
|
<style>
|
|
.footer-nav {
|
|
padding: 24px 0;
|
|
color: #99a9bf;
|
|
font-size: 14px;
|
|
|
|
&::after {
|
|
content: '';
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
|
|
& i {
|
|
transition: .3s;
|
|
color: #d9def1;
|
|
vertical-align: baseline;
|
|
}
|
|
}
|
|
|
|
.footer-nav-link {
|
|
cursor: pointer;
|
|
transition: .3s;
|
|
|
|
&:hover {
|
|
color: #20a0ff;
|
|
|
|
& i {
|
|
color: #20a0ff;
|
|
}
|
|
}
|
|
}
|
|
|
|
.footer-nav-left {
|
|
float: left;
|
|
margin-left: -4px;
|
|
}
|
|
|
|
.footer-nav-right {
|
|
float: right;
|
|
margin-right: -4px;
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
import navConfig from '../nav.config.json';
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
currentComponent: null,
|
|
nav: [],
|
|
currentIndex: -1,
|
|
leftNav: null,
|
|
rightNav: null
|
|
};
|
|
},
|
|
|
|
computed: {
|
|
lang() {
|
|
return this.$route.meta.lang;
|
|
}
|
|
},
|
|
|
|
watch: {
|
|
'$route.path'() {
|
|
this.setNav();
|
|
this.updateNav();
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
setNav() {
|
|
let nav = navConfig[this.lang];
|
|
this.nav = nav[0].children.concat(nav[1]);
|
|
nav[2].groups.map(group => group.list).forEach(list => {
|
|
this.nav = this.nav.concat(list);
|
|
});
|
|
},
|
|
|
|
updateNav() {
|
|
this.currentComponent = '/' + this.$route.path.split('/')[3];
|
|
for (let i = 0, len = this.nav.length; i < len; i++) {
|
|
if (this.nav[i].path === this.currentComponent) {
|
|
this.currentIndex = i;
|
|
break;
|
|
}
|
|
}
|
|
this.leftNav = this.nav[this.currentIndex - 1];
|
|
this.rightNav = this.nav[this.currentIndex + 1];
|
|
},
|
|
|
|
handleNavClick(direction) {
|
|
this.$router.push(`/${ this.lang }/component${ direction === 'prev' ? this.leftNav.path : this.rightNav.path }`);
|
|
}
|
|
},
|
|
|
|
created() {
|
|
this.setNav();
|
|
this.updateNav();
|
|
}
|
|
};
|
|
</script> |