Sfoglia il codice sorgente

cps:分享赚钱中转页优化

panyong 3 anni fa
parent
commit
5bcaf88f1e

+ 0 - 6
htmldev/cps/src/router/index.js

@@ -176,12 +176,6 @@ VueRouter.prototype.push = function push (location, onResolve, onReject) {
 router.beforeEach((to, from, next) => {
   updateWechatToken()
   updateInviteId()
-  const { redirectUrl } = to.query
-  if (redirectUrl && /http/.test(decodeURIComponent(redirectUrl))) {
-    setTimeout(() => {
-      location.replace(decodeURIComponent(redirectUrl))
-    }, 500)
-  }
   next()
 })
 

+ 7 - 1
htmldev/cps/src/views/shareMiddle/index.vue

@@ -4,7 +4,13 @@
 
 <script>
 export default {
-  name: 'index'
+  name: 'index',
+  created () {
+    const { redirectUrl } = this.$route.query
+    if (redirectUrl && /http/.test(decodeURIComponent(redirectUrl))) {
+      location.replace(decodeURIComponent(redirectUrl))
+    }
+  }
 }
 </script>