fix: 修复实体下拉预览跳转url参数不对的问题

(cherry picked from commit 3f45002047)
This commit is contained in:
chenjinsong
2023-07-17 20:06:31 +08:00
committed by 陈劲松
parent 4b04433194
commit bddc366f05
4 changed files with 4 additions and 4 deletions

View File

@@ -244,7 +244,7 @@ export default {
path: '/entityDetail',
query: {
entityType: type,
name: name
entityName: name
}
})
window.open(href, '_blank')

View File

@@ -275,7 +275,7 @@ export default {
path: '/entityDetail',
query: {
entityType: type,
name: name
entityName: name
}
})
window.open(href, '_blank')

View File

@@ -236,7 +236,7 @@ export default {
path: '/entityDetail',
query: {
entityType: type,
name: name
entityName: name
}
})
window.open(href, '_blank')

View File

@@ -379,7 +379,7 @@ export default {
path: '/entityDetail',
query: {
entityType: type,
name: name
entityName: name
}
})
window.open(href, '_blank')