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

This commit is contained in:
王嘉豪
2025-09-04 14:27:25 +08:00
committed by wangjiahao
parent 042aabda1f
commit cda3789a0f

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) {