|
@@ -176,6 +176,12 @@ const router = new VueRouter({
|
|
|
})
|
|
|
}
|
|
|
})
|
|
|
+const originalPush = VueRouter.prototype.push
|
|
|
+
|
|
|
+VueRouter.prototype.push = function push (location, onResolve, onReject) {
|
|
|
+ if (onResolve || onReject) return originalPush.call(this, location, onResolve, onReject)
|
|
|
+ return originalPush.call(this, location).catch(err => err)
|
|
|
+}
|
|
|
|
|
|
router.beforeEach((to, from, next) => {
|
|
|
updateWechatToken()
|