RuoYi
2020-08-05 b56898858d829a314b9209fb6b05dac01ff5ef6a
超时登录后页面跳转到首页
已修改1个文件
7 ■■■■ 文件已修改
ruoyi-ui/src/utils/request.js 7 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/utils/request.js
@@ -32,17 +32,14 @@
    // 获取错误信息
    const msg = errorCode[code] || res.data.msg || errorCode['default']
    if (code === 401) {
      MessageBox.confirm(
        '登录状态已过期,您可以继续留在该页面,或者重新登录',
        '系统提示',
        {
      MessageBox.confirm('登录状态已过期,您可以继续留在该页面,或者重新登录', '系统提示', {
          confirmButtonText: '重新登录',
          cancelButtonText: '取消',
          type: 'warning'
        }
      ).then(() => {
        store.dispatch('LogOut').then(() => {
          location.reload() // 为了重新实例化vue-router对象 避免bug
          location.href = '/index';
        })
      })
    } else if (code === 500) {