From 46fdee6c016d36d1b67b2d30915973f592f2475b Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Thu, 15 Jan 2026 16:10:58 +0800 Subject: [PATCH] =?UTF-8?q?SPM=E5=8F=91=E9=80=81=E6=9C=89=E9=99=90?= =?UTF-8?q?=E8=AE=A9=E4=B8=AD=E5=BF=83=E4=BA=BA=E5=91=98=E6=9B=B4=E6=96=B0?= =?UTF-8?q?=E4=BA=BA=E5=91=98=E4=BF=A1=E6=81=AF=EF=BC=8C=E4=B8=AD=E5=BF=83?= =?UTF-8?q?=E4=BA=BA=E5=91=98=E7=9A=84=E9=82=AE=E4=BB=B6=E4=B8=AD=E8=BF=9B?= =?UTF-8?q?=E5=85=A5=E4=B8=AD=E5=BF=83=E8=B0=83=E7=A0=94=E9=93=BE=E6=8E=A5?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=EF=BC=8C=E4=BA=A4=E4=BA=92=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/research/login.vue | 10 +++++++--- src/views/trials/trials-panel/site/index.vue | 2 +- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/views/research/login.vue b/src/views/research/login.vue index 8009844c..9981902b 100644 --- a/src/views/research/login.vue +++ b/src/views/research/login.vue @@ -42,8 +42,8 @@ {{ $t('trials:researchForm:button:updateQsForm') }} - - + + {{ $t('trials:researchForm:button:cancelUpdateQsForm') }} @@ -214,7 +214,11 @@ export default { let { email, oldEMail, trialSiteId } = this.$route.query if (trialSiteId) this.form.TrialSiteId = trialSiteId if (oldEMail) this.form.ReplaceUserEmailOrPhone = oldEMail - if (email) this.form.EmailOrPhone = email + if (email && email !== 'null') { + this.form.EmailOrPhone = email + } else { + this.form.EmailOrPhone = oldEMail + } } }, methods: { diff --git a/src/views/trials/trials-panel/site/index.vue b/src/views/trials/trials-panel/site/index.vue index 6a3fa3f0..6c37f5b1 100644 --- a/src/views/trials/trials-panel/site/index.vue +++ b/src/views/trials/trials-panel/site/index.vue @@ -193,7 +193,7 @@ {{ $t('common:button:confirm') }} - + {{ $t('common:button:cancel') }}