关闭页签后存在其他页签时不应该跳转首页
This commit is contained in:
parent
3286323c8c
commit
0fca81b350
|
@ -32,8 +32,12 @@ export default {
|
||||||
// 关闭指定tab页签
|
// 关闭指定tab页签
|
||||||
closePage(obj) {
|
closePage(obj) {
|
||||||
if (obj === undefined) {
|
if (obj === undefined) {
|
||||||
return useTagsViewStore().delView(router.currentRoute.value).then(({ lastPath }) => {
|
return useTagsViewStore().delView(router.currentRoute.value).then(({ visitedViews }) => {
|
||||||
return router.push(lastPath || '/index');
|
const latestView = visitedViews.slice(-1)[0]
|
||||||
|
if (latestView) {
|
||||||
|
return router.push(latestView.fullPath)
|
||||||
|
}
|
||||||
|
return router.push('/');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
return useTagsViewStore().delView(obj);
|
return useTagsViewStore().delView(obj);
|
||||||
|
|
Loading…
Reference in New Issue