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 {