diff --git a/src/views/trials/trials-panel/reading/dicoms/index.vue b/src/views/trials/trials-panel/reading/dicoms/index.vue index 0e8edb5..f252443 100644 --- a/src/views/trials/trials-panel/reading/dicoms/index.vue +++ b/src/views/trials/trials-panel/reading/dicoms/index.vue @@ -478,7 +478,9 @@ export default { }) }, async handleConfirmReminder() { - let i = this.$d.CriterionType.findIndex(i=>i.value === parseInt(this.criterionType)) + let criterionType = parseInt(this.criterionType) + criterionType = criterionType === 17 ? 1 : criterionType + let i = this.$d.CriterionType.findIndex(i=>i.value === criterionType) if (i === -1) return let criterionName = this.$d.CriterionType[i].label let msg = this.$t('trials:reading:criterion:message').replace('xxx', criterionName)