let json = {
user_name:this.userName,
user_pass:this.userPws
}
base.axios_post(json,"backhome/logins",function(res){
if(res.mark=="0"){
_this.$router.push("/catchOrder");
}
})
this is the page where I logged in. After a successful login, the jump will successfully jump to the catchOrder page, but the click/hover and other events on the page do not work. Just refresh the page. This is why you solve the problem online
.