From 41c24bf062e0296d84a2d4d573f6b84fff0a1af3 Mon Sep 17 00:00:00 2001 From: caiyiling <1321909229@qq.com> Date: Sat, 11 May 2024 13:14:18 +0800 Subject: [PATCH] =?UTF-8?q?RECIST1.1-BM=E9=A6=96=E6=AC=A1=E8=BF=9B?= =?UTF-8?q?=E5=85=A5=E9=98=85=E7=89=87=E6=8F=90=E9=86=92=E8=AF=AD=E6=9B=B4?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/trials/trials-panel/reading/dicoms/index.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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)