From be2651501d3f816479d23003fd16bbf8747590ed Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Mon, 21 Jul 2025 13:52:08 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B4=A8=E6=8E=A7=E9=A1=B5=E9=9D=A2=E4=B8=AD?= =?UTF-8?q?=E6=A3=80=E6=9F=A5=E7=9A=84=E5=BD=B1=E5=83=8F=E4=B8=BA0?= =?UTF-8?q?=EF=BC=8C=E6=A3=80=E6=9F=A5=E5=88=97=E8=A1=A8=E6=B2=A1=E6=9C=89?= =?UTF-8?q?=E6=B8=B2=E6=9F=93=E3=80=82=E7=82=B9=E5=87=BBDICOM=E5=BD=B1?= =?UTF-8?q?=E5=83=8F=E6=97=B6=EF=BC=8C=E4=BC=9A=E5=87=BA=E7=8E=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../trials-panel/visit/qc-check/components/qualityAssurance.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/views/trials/trials-panel/visit/qc-check/components/qualityAssurance.vue b/src/views/trials/trials-panel/visit/qc-check/components/qualityAssurance.vue index 2617ace9..107cab50 100644 --- a/src/views/trials/trials-panel/visit/qc-check/components/qualityAssurance.vue +++ b/src/views/trials/trials-panel/visit/qc-check/components/qualityAssurance.vue @@ -1052,6 +1052,7 @@ export default { this.trialId = this.$route.query.trialId this.getQCInfo() this.getDicData() + this.activeName = this.data.DicomStudyCount > 0 ? 'dicom' : this.data.NoneDicomStudyCount > 0 ? 'none-dicom' : 'dicom' // this.handleViewImages() // this.handleViewAllNoneDicoms() }, @@ -1215,6 +1216,7 @@ export default { this.studyList = res.Result.StudyList this.seriesList = res.Result.SeriesList this.noneDicomStudyList = res.Result.NoneDicomStudyList + this.activeName = this.studyList && this.studyList.length > 0 ? 'dicom' : this.noneDicomStudyList && this.noneDicomStudyList.length > 0 ? 'none-dicom' : 'dicom' this.relationInfo = res.Result.RelationInfo this.trialBodyPartTypes = this.relationInfo.TrialBodyPartTypes ? this.relationInfo.TrialBodyPartTypes.trim().split('|')