Explorar el Código

cps:分享赚钱中转页优化

panyong hace 3 años
padre
commit
9168c8d09f
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  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()
 })