Commit 57be75f5 by xue_wengang

Update jump.vue

parent 72e223cd
...@@ -41,7 +41,8 @@ export default { ...@@ -41,7 +41,8 @@ export default {
self.$router.push({ self.$router.push({
path: self.$route.query.path, path: self.$route.query.path,
}); });
}).catch((err) => { })
.catch((err) => {
console.log(err); console.log(err);
}); });
}, },
...@@ -71,8 +72,17 @@ export default { ...@@ -71,8 +72,17 @@ export default {
}, },
}) })
.then((res) => { .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() { 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