Commit e9bf3545 by xue_wengang

案件侦办单点登录

parent bdacf2fd
......@@ -257,6 +257,7 @@ export default {
if (res.success === true) {
this.userInfo = res.data.rows;
this.loginSolar();
this.loginAjzb()
}
});
},
......@@ -265,6 +266,22 @@ export default {
this.getQxpm();
},
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() {
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