|
@@ -30,6 +30,7 @@ export default {
|
|
|
this.accessInfo.timestamp = params.timestamp;
|
|
|
this.accessInfo.token = params.token;
|
|
|
this.accessInfo.from = params.from;
|
|
|
+ this.accessInfo.scode = params.scode;
|
|
|
|
|
|
const url = CORE_API + "/auth/thirdPartyAccess";
|
|
|
this.$httpWithMsg
|
|
@@ -39,6 +40,7 @@ export default {
|
|
|
.then((response) => {
|
|
|
var user = response.data;
|
|
|
user.from = this.accessInfo.from;
|
|
|
+ user.scode = this.accessInfo.scode;
|
|
|
this.USER_SIGNIN(user);
|
|
|
this.$router.replace({ path: "/home/overview" });
|
|
|
this.$notify({
|