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