소스 검색

cps:分享赚钱中转页优化

panyong 3 년 전
부모
커밋
9168c8d09f
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  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()
 })