Ver código fonte

cps:分享赚钱中转页优化

panyong 3 anos atrás
pai
commit
9168c8d09f
1 arquivos alterados com 3 adições e 1 exclusões
  1. 3 1
      htmldev/cps/src/router/index.js

+ 3 - 1
htmldev/cps/src/router/index.js

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