You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
737 B
36 lines
737 B
<template>
|
|
<transition name="el-fade-in-linear">
|
|
<router-view />
|
|
</transition>
|
|
</template>
|
|
|
|
<style>
|
|
body .el-table th.gutter {
|
|
display: table-cell !important;
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
import Cookies from 'js-cookie'
|
|
import { messages } from '@/i18n'
|
|
export default {
|
|
watch: {
|
|
'$i18n.locale': 'i18nHandle'
|
|
},
|
|
created () {
|
|
this.i18nHandle(this.$i18n.locale)
|
|
},
|
|
|
|
methods: {
|
|
i18nHandle (val, oldVal) {
|
|
Cookies.set('language', val)
|
|
document.querySelector('html').setAttribute('lang', val)
|
|
document.title = messages[val].brand.lg
|
|
// 非登录页面,切换语言刷新页面
|
|
if (this.$route.name !== 'login' && oldVal) {
|
|
window.location.reload()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|