diff --git a/src/views/modules/user/fail-authentication.vue b/src/views/modules/user/fail-authentication.vue index 1acd562..58deec3 100644 --- a/src/views/modules/user/fail-authentication.vue +++ b/src/views/modules/user/fail-authentication.vue @@ -172,6 +172,7 @@ export default { streetId: '', communityId: '', gridId: '', + deptId: '', realName: '', mobile: '', identityNo: '', @@ -210,21 +211,25 @@ export default { this.dataForm.streetId = '' this.dataForm.communityId = '' this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 1) { this.dataForm.streetId = this.deptIdList[0] this.dataForm.communityId = '' this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 2) { this.dataForm.streetId = this.deptIdList[0] this.dataForm.communityId = this.deptIdList[1] this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 3) { this.dataForm.streetId = this.deptIdList[0] this.dataForm.communityId = this.deptIdList[1] this.dataForm.gridId = this.deptIdList[2] + this.dataForm.deptId = this.deptIdList[2] } } }, diff --git a/src/views/modules/user/partyauthenticationfailed.vue b/src/views/modules/user/partyauthenticationfailed.vue index d6472e8..6802414 100644 --- a/src/views/modules/user/partyauthenticationfailed.vue +++ b/src/views/modules/user/partyauthenticationfailed.vue @@ -51,16 +51,16 @@ width="80" header-align="center" align="center"> - + - - - - - - - - - + + diff --git a/src/views/modules/user/pass-authentication.vue b/src/views/modules/user/pass-authentication.vue index 87e419e..6db22d6 100644 --- a/src/views/modules/user/pass-authentication.vue +++ b/src/views/modules/user/pass-authentication.vue @@ -168,6 +168,7 @@ export default { streetId: '', communityId: '', gridId: '', + deptId: '', realName: '', mobile: '', identityNo: '', @@ -207,21 +208,25 @@ export default { this.dataForm.streetId = '' this.dataForm.communityId = '' this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 1) { this.dataForm.streetId = this.deptIdList[0] this.dataForm.communityId = '' this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 2) { this.dataForm.streetId = this.deptIdList[0] this.dataForm.communityId = this.deptIdList[1] this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 3) { this.dataForm.streetId = this.deptIdList[0] this.dataForm.communityId = this.deptIdList[1] this.dataForm.gridId = this.deptIdList[2] + this.dataForm.deptId = this.deptIdList[2] } } }, diff --git a/src/views/modules/user/wait-authentication.vue b/src/views/modules/user/wait-authentication.vue index a36c327..2be86b9 100644 --- a/src/views/modules/user/wait-authentication.vue +++ b/src/views/modules/user/wait-authentication.vue @@ -161,6 +161,7 @@ export default { streetId: '', communityId: '', gridId: '', + deptId: '', realName: '', mobile: '', identityNo: '', @@ -199,21 +200,25 @@ export default { this.dataForm.streetId = '' this.dataForm.communityId = '' this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 1) { this.dataForm.streetId = this.deptIdList[0] this.dataForm.communityId = '' this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 2) { this.dataForm.streetId = this.deptIdList[0] this.dataForm.communityId = this.deptIdList[1] this.dataForm.gridId = '' + this.dataForm.deptId = '' } if (val.length === 3) { this.dataForm.streetId = this.deptIdList[0] this.dataForm.communityId = this.deptIdList[1] this.dataForm.gridId = this.deptIdList[2] + this.dataForm.deptId = this.deptIdList[2] } } },