From a188defdbc0b2ca7599617a870091cb6f1ce5168 Mon Sep 17 00:00:00 2001 From: chenxf Date: Fri, 24 Apr 2026 16:51:26 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=9B=B4=E6=96=B0=E7=94=A8=E6=88=B7?= =?UTF-8?q?=E4=BF=A1=E6=81=AF=E5=AF=B9=E8=AF=9D=E6=A1=86=E9=80=BB=E8=BE=91?= =?UTF-8?q?=E5=B9=B6=E8=B0=83=E6=95=B4=E7=8E=AF=E5=A2=83=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/regulatoryPlatForm/index.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/views/regulatoryPlatForm/index.vue b/src/views/regulatoryPlatForm/index.vue index 34a837d..3d4ec83 100644 --- a/src/views/regulatoryPlatForm/index.vue +++ b/src/views/regulatoryPlatForm/index.vue @@ -375,12 +375,15 @@ export default { aiccsApiUsersappCheck(), aiccsApiUsersappGetPublicKey() ]) - if (!checkRes || checkRes.code !== 0) { + if ((!checkRes || checkRes.code !== 0)) { this.userInfoDialogVisible = true return } this.userInfoPublicKey = (publicKeyRes && (publicKeyRes.data || publicKeyRes.msg || publicKeyRes.publicKey)) || '' this.userInfoDialogVisible = !this.hasUserInfoRecord(checkRes) + if (process.env.VUE_APP_ENV === 'dev') { + this.userInfoDialogVisible = false + } } catch (error) { console.error('检查用户身份证和手机号失败:', error) this.userInfoDialogVisible = true