|
@@ -178,7 +178,9 @@ router.beforeEach((to, from, next) => {
|
|
updateInviteId()
|
|
updateInviteId()
|
|
const { redirectUrl } = to.query
|
|
const { redirectUrl } = to.query
|
|
if (redirectUrl && /http/.test(decodeURIComponent(redirectUrl))) {
|
|
if (redirectUrl && /http/.test(decodeURIComponent(redirectUrl))) {
|
|
- location.replace(decodeURIComponent(redirectUrl))
|
|
|
|
|
|
+ setTimeout(() => {
|
|
|
|
+ location.replace(decodeURIComponent(redirectUrl))
|
|
|
|
+ }, 500)
|
|
}
|
|
}
|
|
next()
|
|
next()
|
|
})
|
|
})
|