前端无操作一段时间返回登录页

项目场景:

公司项目需求要求页面无操作三十分钟之后就自动返回到登录页。

解决方案:

项目使用的vue技术,所以我是在App.vue添加

复制代码
<template>
  <div id="app">
    <router-view />
  </div>
</template>
<script>
export default {
  data() {
    return {
      //设置超时时间: 30分种
      timeOut: 30 * 60 * 1000,
    }
  },
  methods: {
    // 存储当前时间
    setLastTime() {
      localStorage.setItem('lastTime', new Date().getTime());
    },
    // 获取时间
    getLastTime() {
      return localStorage.getItem('lastTime');
    },
    checkTimeout() {
      // 登录页面不监听
      if (this.timeOut && this.$router.currentRoute.name === 'login') {
        this.setLastTime();
      }
      else {
        //更新当前时间
        let currentTime = new Date().getTime();
        let lastTime = this.getLastTime();
        //判断是否超时
        if (currentTime - lastTime > this.timeOut) {
          this.$router.push('/login');
          this.$message({ type: 'warning', message: '长时间未操作,需重新登录' })
          document.title='登录页'
          localStorage.removeItem("Authorization");
        }
      }
    },
  },
  mounted() {
    let that = this;
    // 每30秒 调用检查时间的方法
    this.$nextTick(function () {
      setInterval(this.checkTimeout, 30000);
    })
    // 页面监听 按下鼠标更新操作时间
    window.onload = function () {
      window.document.onmousedown = function () {
        that.setLastTime();
      }
    };
  }
};
</script>
<style>
html,
body,
#app {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  margin-top: 0;
}
</style>

注意:这样可能会出现一登录之后由于没有马上点击页面导致马上返回到导航舱,所以需要在封装请求那里,一旦接口返回就刷新lastTime

复制代码
localStorage.setItem('lastTime', new Date().getTime());
相关推荐
赵谨言2 分钟前
基于YOLOv5的火灾检测研究是当前计算机视觉和消防安全领域的重要研究方向
大数据·开发语言·经验分享·python
前端小D3 分钟前
作用域/闭包
前端·javascript
前端 贾公子4 分钟前
@uni-helper 社区:让 uni-app 拥抱 ESM 时代
开发语言·前端·javascript
大卡拉米5 分钟前
ClaudeCode安装及使用
前端·学习
豆豆5 分钟前
PageAdmin CMS模板开发详解:HTML转CMS系统的10个核心步骤
前端·html·cms·网站建设·网站制作·自助建站·网站管理系统
lemon_yyds5 分钟前
vue 2 升级vue3 : element ui 校验红色高亮失去效果
前端·element
真夜5 分钟前
又遇到生产与开发环境结果不一致问题。。。
前端·javascript·http
lemon_yyds5 分钟前
vue2升级vue3:图片点击预览出现样式错乱
前端
掘金安东尼6 分钟前
低代码工具很多,为什么 RollCode 更像一套「页面生产平台」
前端·javascript·面试
HelloReader6 分钟前
Flutter StatefulWidget让界面动起来(六)
前端