Commit 57be75f5 by xue_wengang

Update jump.vue

parent 72e223cd
......@@ -38,12 +38,13 @@ export default {
})
.then((res) => {
console.log(123);
self.$router.push({
path: self.$route.query.path,
});
}).catch((err) => {
console.log(err);
self.$router.push({
path: self.$route.query.path,
});
})
.catch((err) => {
console.log(err);
});
},
logins() {
var self = this;
......@@ -71,8 +72,17 @@ export default {
},
})
.then((res) => {
self.login()
self.login();
});
axios
.post(url.BaseURL + "/loginByZjhm", params, {
headers: {
"content-type": "application/x-www-form-urlencoded",
},
})
.then((res) => {
self.login();
});
},
},
created() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment