|
@@ -74,6 +74,8 @@
|
|
|
sendMsgWz: '发送验证码',
|
|
|
|
|
|
isLoading: false,
|
|
|
+
|
|
|
+ project: this.$route.query.project,
|
|
|
}
|
|
|
},
|
|
|
created() {
|
|
@@ -155,14 +157,14 @@
|
|
|
this.set_token(response.token);
|
|
|
if (response.personInfo.faceImageUrl) {
|
|
|
//跳转到项目主页上去
|
|
|
- window.location.href = '../' + this.$route.query.project + '/#/master';
|
|
|
+ window.location.href = '../' + this.project + '/#/master';
|
|
|
} else {
|
|
|
//上传头像
|
|
|
this.$router.push({
|
|
|
name: 'UserUploadPhoto',
|
|
|
query: {
|
|
|
personId: this.personId,
|
|
|
- project: this.$route.query.project
|
|
|
+ project: this.project
|
|
|
}
|
|
|
})
|
|
|
}
|