Преглед на файлове

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()
 })