Commit e9bf3545 by xue_wengang

案件侦办单点登录

parent bdacf2fd
...@@ -257,6 +257,7 @@ export default { ...@@ -257,6 +257,7 @@ export default {
if (res.success === true) { if (res.success === true) {
this.userInfo = res.data.rows; this.userInfo = res.data.rows;
this.loginSolar(); this.loginSolar();
this.loginAjzb()
} }
}); });
}, },
...@@ -265,6 +266,22 @@ export default { ...@@ -265,6 +266,22 @@ export default {
this.getQxpm(); this.getQxpm();
}, },
methods: { methods: {
loginAjzb(){
var params = new URLSearchParams();
params.append("zjhm", this.userInfo.identitycard);
axios
.post(url.BaseURL + "/loginByZjhm", params, {
headers: {
"content-type": "application/x-www-form-urlencoded",
},
})
.then((res) => {
})
.catch((err) => {
console.log(err);
});
},
loginOut() { loginOut() {
this.$router.push("/login"); this.$router.push("/login");
}, },
......
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