fix(utils): 修复 删除当前tab为最后一个时,tab切换错误bug.

This commit is contained in:
AN
2025-06-08 22:49:41 +08:00
parent d37adc362d
commit 64bd119c29

View File

@ -100,7 +100,12 @@ export const useTabStore = defineStore(SetupStoreId.Tab, () => {
const removedTabRouteKey = tabs.value[removeTabIndex].routeKey;
const isRemoveActiveTab = activeTabId.value === tabId;
const nextTab = tabs.value[removeTabIndex + 1] || homeTab.value;
// if remove the last tab, then switch to the second last tab
const isLastTab = removeTabIndex === tabs.value.length - 1;
const nextTab = isLastTab
? tabs.value[removeTabIndex - 1] || homeTab.value
: tabs.value[removeTabIndex + 1] || homeTab.value;
// remove tab
tabs.value.splice(removeTabIndex, 1);