|
@@ -429,44 +429,51 @@ export default {
|
|
|
this.fullScreenLoading = false
|
|
|
},
|
|
|
handleClickAuthReject () {
|
|
|
- if (this.user.userVO.authType == 'agency'){
|
|
|
+ if (this.user.userVO.authType == 'agency') {
|
|
|
this.$router.push({
|
|
|
- name:'AgencyAuthentication'
|
|
|
+ name: 'AgencyAuthentication',
|
|
|
+ params: {userId: this.user.userVO.id}
|
|
|
})
|
|
|
}
|
|
|
- if (this.user.userVO.authType == 'enterprise'){
|
|
|
+ if (this.user.userVO.authType == 'enterprise') {
|
|
|
this.$router.push({
|
|
|
- name:'IndividualAuthentication'
|
|
|
+ name: 'EnterpriseAuthentication',
|
|
|
+ params: {userId: this.user.userVO.id}
|
|
|
})
|
|
|
}
|
|
|
- if (this.user.userVO.authType == 'personal'){
|
|
|
+ if (this.user.userVO.authType == 'personal') {
|
|
|
this.$router.push({
|
|
|
- name:'IndividualAuthentication'
|
|
|
+ name: 'IndividualAuthentication',
|
|
|
+ params: {userId: this.user.userVO.id}
|
|
|
})
|
|
|
}
|
|
|
|
|
|
//this.getAuthInfo()
|
|
|
},
|
|
|
handleClickAuthPass () {
|
|
|
- if (this.user.userVO.authType == 'agency'){
|
|
|
+
|
|
|
+ //this.getAuthInfo()
|
|
|
+ },
|
|
|
+ handleClickAuthChecking () {
|
|
|
+ //this.getAuthInfo()
|
|
|
+ if (this.user.userVO.authType == 'agency') {
|
|
|
this.$router.push({
|
|
|
- name:'AgencyAuthentication'
|
|
|
+ name: 'AgencyAuthentication',
|
|
|
+ params: {userId: this.user.userVO.id}
|
|
|
})
|
|
|
}
|
|
|
- if (this.user.userVO.authType == 'enterprise'){
|
|
|
+ if (this.user.userVO.authType == 'enterprise') {
|
|
|
this.$router.push({
|
|
|
- name:'IndividualAuthentication'
|
|
|
+ name: 'EnterpriseAuthentication',
|
|
|
+ params: {userId: this.user.userVO.id}
|
|
|
})
|
|
|
}
|
|
|
- if (this.user.userVO.authType == 'personal'){
|
|
|
+ if (this.user.userVO.authType == 'personal') {
|
|
|
this.$router.push({
|
|
|
- name:'IndividualAuthentication'
|
|
|
+ name: 'IndividualAuthentication',
|
|
|
+ params: {userId: this.user.userVO.id}
|
|
|
})
|
|
|
}
|
|
|
- //this.getAuthInfo()
|
|
|
- },
|
|
|
- handleClickAuthChecking () {
|
|
|
- this.getAuthInfo()
|
|
|
},
|
|
|
showAuthRejectDialog () {
|
|
|
this.isShowAuthRejectDialog = true
|