feat: 管理端添加多标签Tab页内嵌模式设置

This commit is contained in:
Yer
2023-07-14 09:19:52 +08:00
parent 36ef331b94
commit 873764b59e
18 changed files with 238 additions and 89 deletions

View File

@@ -43,8 +43,11 @@ export function customRouterPush(push){
router.push(push)
}
else{
let url = router.resolve(push);
window.open(url.href, '_blank');
if(Object.keys(setting).length == 0){router.push(push)}
else{
let url = router.resolve(push);
window.open(url.href, '_blank');
}
}
}