diff --git a/src/router/index.js b/src/router/index.js index 7769d8a2d..a20fe828f 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -172,6 +172,8 @@ router.beforeEach(async (to, from, next) => { if (isInIframe && notToPIAReturn) { const newUrl = `${window.top.location.origin}${to.href}`; window.top.location.href = newUrl; + } else if (toQueryPage === fromQueryPage) { + router.go(0); } else { next(); }