质控页面中检查的影像为0,检查列表没有渲染。点击DICOM影像时,会出现
continuous-integration/drone/push Build is passing Details

main
wangxiaoshuang 2025-07-21 13:52:08 +08:00
parent 2df6c37fd0
commit be2651501d
1 changed files with 2 additions and 0 deletions

View File

@ -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('|')