fix(仪表板): 修复数据大屏预览模式下跳转当前页面失败 #8840

This commit is contained in:
wangjiahao 2024-04-03 16:33:03 +08:00
parent 0ee2bd5477
commit 47e5ff9870

View File

@ -316,6 +316,9 @@ const onDrillFilters = param => {
const windowsJump = (url, jumpType) => {
try {
window.open(url, jumpType)
if (jumpType === '_self') {
location.reload()
}
} catch (e) {
ElMessage.error(t('visualization.url_check_error') + ':' + url)
}