fix(图表): 优化移动端跳转问题 (#16895)

This commit is contained in:
王嘉豪
2025-09-04 14:27:25 +08:00
committed by GitHub
parent 84f4a7386f
commit 0e181452f0

View File

@@ -429,6 +429,9 @@ const windowsJump = (url, jumpType, size = 'middle') => {
}
} else {
newWindow = window.open(url, jumpType)
if (inMobile.value) {
window.location.reload()
}
}
initOpenHandler(newWindow)
} catch (e) {