fix(仪表板): 移动端跳转问题 (#18171)

This commit is contained in:
王嘉豪
2026-03-31 14:21:36 +08:00
committed by GitHub
parent bd802e335f
commit 8ac5bc068c

View File

@@ -425,14 +425,8 @@ const windowsJump = (url, jumpType, size = 'middle') => {
dePreviewPopDialogRef.value.previewInit({ url, size })
} else if ('_self' === jumpType) {
newWindow = window.open(url, jumpType)
if (inMobile.value) {
window.location.reload()
}
} else {
newWindow = window.open(url, jumpType)
if (inMobile.value) {
window.location.reload()
}
}
initOpenHandler(newWindow)
} catch (e) {