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.

70 lines
1.8 KiB

4 years ago
<template>
<div class="main">
<v-head></v-head>
<div class="layout">
<navbar v-if="!hideNavList.includes($route.path)"></navbar>
<div class="content">
<transition name="move" mode="out-in">
<router-view class="view"></router-view>
</transition>
<el-backtop target=".content"></el-backtop>
<v-footer ref="footer"></v-footer>
</div>
</div>
</div>
</template>
<script>
import { mapState, mapActions } from 'vuex'
import util from '@/libs/util'
import Setting from '@/setting'
import vHead from '../header'
import navbar from '../navbar'
import vFooter from '../footer'
export default {
data() {
return {
hideNavList: ['/record/show','/setting/person']
};
},
components: {
vHead,
navbar,
vFooter
},
computed: {
},
mounted() {
this.autoLogout()
},
methods: {
...mapActions('user', [
'logout'
]),
// 长时间未操作,自动退出登录
4 years ago
autoLogout(){
let lastTime = new Date().getTime()
document.onmousedown = () => {
lastTime = new Date().getTime()
}
setInterval(() => {
if(util.local.get(Setting.tokenKey) && (new Date().getTime() - lastTime) > Setting.autoLogoutTime){
util.errorMsg('用户登录过期,请重新登录')
setTimeout(this.logout,1500)
}
},1000)
}
}
};
</script>
<style lang="scss" scoped>
.main{
min-height: 100%;
.view{
min-height: calc(100vh - 175px);
padding: 24px;
}
}
</style>