管道基础大数据平台系统开发-【前端】-新系統界面
Surpriseplus
2023-02-10 4745b682956116fa09d812c59b485395f45c2e87
src/App.vue
@@ -18,6 +18,24 @@
  },
  created() {
  },
  mounted () {
    window.addEventListener('beforeunload', e => {
      sessionStorage.setItem('beforeunload', 1);
    });
    // 监听页面刷新
    if (sessionStorage.getItem('beforeunload') == 1) {
      let name = sessionStorage.getItem("routerName");
      if (name) {
        this.$nextTick(function () {
          this.$router.push({ path: name }); //如果sessionStorage存在路由,去缓存的路由
        })
      } else {
        this.$nextTick(function () {
         this.$router.push({ path: '/' });  //不存在存储,去主页
        })
      }
    }
  },
  beforeDestroy() { },
};
</script>