fix(projects): 修复tab不显示路由首页的问题
This commit is contained in:
parent
973ab14442
commit
a792bb5cb3
@ -225,7 +225,11 @@ export const useTabStore = defineStore('tab-store', {
|
|||||||
if (!isHome) {
|
if (!isHome) {
|
||||||
const currentTab = getTabRouteByVueRoute(currentRoute);
|
const currentTab = getTabRouteByVueRoute(currentRoute);
|
||||||
if (!currentRoute.meta.multiTab) {
|
if (!currentRoute.meta.multiTab) {
|
||||||
tabs.splice(index, 1, currentTab);
|
if (index > -1) {
|
||||||
|
tabs.splice(index, 1, currentTab);
|
||||||
|
} else {
|
||||||
|
tabs.push(currentTab);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
const hasCurrent = isInTabRoutes(tabs, currentRoute.fullPath);
|
const hasCurrent = isInTabRoutes(tabs, currentRoute.fullPath);
|
||||||
if (!hasCurrent) {
|
if (!hasCurrent) {
|
||||||
|
Loading…
Reference in New Issue
Block a user