diff --git a/src/views/trials/trials-panel/reading/dicoms/components/ReportPage.vue b/src/views/trials/trials-panel/reading/dicoms/components/ReportPage.vue index e0d7e28..2d568e2 100644 --- a/src/views/trials/trials-panel/reading/dicoms/components/ReportPage.vue +++ b/src/views/trials/trials-panel/reading/dicoms/components/ReportPage.vue @@ -964,7 +964,9 @@ export default { isBeill = item.answer } if (this.CriterionType === 10) { - if (!this.visitIntervalDay) hasVisitIntervalDay = true + var i = this.visitTaskList.findIndex(i => i.VisitTaskId === this.visitTaskId) + var isBaseline = this.visitTaskList[i].IsBaseLine + if (!this.visitIntervalDay && !isBaseline) hasVisitIntervalDay = true if (!this.tumorEvaluationObj[item.visitTaskId]) isRequired = true if (this.tumorEvaluationObj[item.visitTaskId] !== this.currentTumorEvaluationObj[item.visitTaskId] && this.currentTumorEvaluationObj[item.visitTaskId] && !this.taskReasonObj[item.visitTaskId]) isRequired = true this.answers.push({ questionId: item.id, answer: item.answer, visitTaskId: item.visitTaskId })