fix(仪表板): 基础设置页面打开方式为当前页面时,在仪表板编辑页面使用新页面预览功能,会在当前页面打开预览

This commit is contained in:
dataeaseShu
2024-11-28 18:10:14 +08:00
parent f04aed6745
commit 56233d26b0

View File

@@ -139,8 +139,7 @@ const previewOuter = () => {
}
canvasSave(() => {
const url = '#/preview?dvId=' + dvInfo.value.id + '&ignoreParams=true'
const openType = wsCache.get('open-backend') === '1' ? '_self' : '_blank'
const newWindow = window.open(url, openType)
const newWindow = window.open(url, '_blank')
initOpenHandler(newWindow)
})
}