From f58e52585f22b6d5b987b1325227d8dbded38b82 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Mon, 17 Nov 2025 13:21:48 +0800 Subject: [PATCH] =?UTF-8?q?=E9=98=85=E7=89=87=E4=BA=BA=E7=AE=80=E5=8E=86?= =?UTF-8?q?=E9=87=87=E9=9B=86=E9=AA=8C=E8=AF=81=E7=A0=81=E6=8C=89=E9=92=AE?= =?UTF-8?q?=E6=A0=B7=E5=BC=8F=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/reviewers/ReviewersResearch.vue | 102 ++++++++-------------- 1 file changed, 38 insertions(+), 64 deletions(-) diff --git a/src/views/reviewers/ReviewersResearch.vue b/src/views/reviewers/ReviewersResearch.vue index ab476208..c7d97be9 100644 --- a/src/views/reviewers/ReviewersResearch.vue +++ b/src/views/reviewers/ReviewersResearch.vue @@ -7,51 +7,20 @@ {{ $t('trials:researchForm:form:title') }} - + - - + + - - - - - - - - {{ this.$t('trials:researchForm:button:send') - }}{{ count || count === 0 ? `(${count}s)` : '' }} - + +
+ + {{ this.$t('trials:researchForm:button:send') + }}{{ count || count === 0 ? `(${count}s)` : '' }} +
@@ -59,12 +28,7 @@ {{ $t('common:button:cancel') }} - + {{ $t('common:button:submit') }} @@ -216,7 +180,7 @@ export default { this.$i18n.locale = this.$route.query.lang this.setLanguage(this.$route.query.lang) }, - mounted() {}, + mounted() { }, methods: { ...mapMutations({ setLanguage: 'lang/setLanguage' }), // 提交 @@ -249,21 +213,16 @@ export default { // this.$router.push({ path: `/researchForm?trialId=${this.trialId}&trialSiteSurveyId=${res.Result.TrialSiteSurveyId}` }) if (this.$route.query.trialId) { this.$router.push({ - path: `/curriculumVitae?Id=${ - res.Result.DoctorId ? res.Result.DoctorId : '' - }&tabActive=BasicInfo&ReviewStatus=${ - res.Result.ReviewStatus - }&trialId=${this.$route.query.trialId}&lang=${ - this.$route.query.lang - }`, + path: `/curriculumVitae?Id=${res.Result.DoctorId ? res.Result.DoctorId : '' + }&tabActive=BasicInfo&ReviewStatus=${res.Result.ReviewStatus + }&trialId=${this.$route.query.trialId}&lang=${this.$route.query.lang + }`, }) } else { this.$router.push({ - path: `/curriculumVitae?Id=${ - res.Result.DoctorId ? res.Result.DoctorId : '' - }&tabActive=BasicInfo&ReviewStatus=${ - res.Result.ReviewStatus - }&lang=${this.$route.query.lang}`, + path: `/curriculumVitae?Id=${res.Result.DoctorId ? res.Result.DoctorId : '' + }&tabActive=BasicInfo&ReviewStatus=${res.Result.ReviewStatus + }&lang=${this.$route.query.lang}`, }) } }) @@ -312,9 +271,8 @@ export default { this.timer = setInterval(() => { if (this.count > 0 && this.count <= TIME_COUNT) { this.count-- - this.sendTitle = `${this.$t('trials:researchForm:button:send')}(${ - this.count - }s)` + this.sendTitle = `${this.$t('trials:researchForm:button:send')}(${this.count + }s)` this.sendDisabled = true } else { this.sendDisabled = false @@ -335,6 +293,7 @@ export default {