跳转改为打开新页面

This commit is contained in:
2023-08-03 16:08:58 +08:00
parent 3900d5cc49
commit 56fa9e96d1
6 changed files with 47 additions and 26 deletions

View File

@@ -355,7 +355,10 @@ onBeforeUnmount(() => {
})
// 公共跳转
const publicJump = path => router.push(path)
const publicJump = path => {
//router.push(path)
window.open(`${document.location.origin}${path}`)
}
</script>