Giovanni
2023-03-10 7a090bda1eacb82cc8215735ca197a03274fcb6e
关闭当前tab页应跳转最右侧tab页而非首页
已修改1个文件
8 ■■■■ 文件已修改
ruoyi-ui/src/plugins/tab.js 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/plugins/tab.js
@@ -32,8 +32,12 @@
  // 关闭指定tab页签
  closePage(obj) {
    if (obj === undefined) {
      return store.dispatch('tagsView/delView', router.currentRoute).then(({ lastPath }) => {
        return router.push(lastPath || '/');
      return store.dispatch('tagsView/delView', router.currentRoute).then(({ visitedViews }) => {
        const latestView = visitedViews.slice(-1)[0]
        if (latestView) {
            return router.push(latestView.fullPath)
        }
        return router.push('/');
      });
    }
    return store.dispatch('tagsView/delView', obj);