wgl 4 роки тому
батько
коміт
1ca053c358

+ 1 - 1
src/projects/business/views/Master/Home.vue

@@ -55,7 +55,7 @@
 						</router-link>
 					</div>
 					<div class="mui-col-xs-6">
-						<router-link :to="{name:'MasterMineEditInfo'}" class="vongi-floor-padded">
+						<router-link :to="{name:'MasterMineFeedback'}" class="vongi-floor-padded">
 							<div class="mui-media-body">
 								<h4 class="mui-ellipsis">问题反馈</h4>
 								<p class="mui-ellipsis">感谢您的发声</p>

+ 4 - 2
src/projects/home/views/User/Login.vue

@@ -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
 									}
 								})
 							}