forked from mt-fe-group/mt-yd-ui
44 lines
868 B
Vue
44 lines
868 B
Vue
<!--
|
|
* @Descripttion:
|
|
* @version:
|
|
* @Author: fzq
|
|
* @Date: 2022-11-25 09:51:46
|
|
* @LastEditors: fzq
|
|
* @LastEditTime: 2022-12-13 19:44:21
|
|
-->
|
|
<template>
|
|
<transition name="el-fade-in-linear">
|
|
<router-view />
|
|
</transition>
|
|
</template>
|
|
|
|
<style>
|
|
.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>
|