tab切换问题
continuous-integration/drone/push Build is passing Details

main
wangxiaoshuang 2025-07-21 16:59:17 +08:00
parent 541d44b4f2
commit 850d64f0aa
1 changed files with 5 additions and 3 deletions

View File

@ -1050,7 +1050,7 @@ export default {
}
window.addEventListener('message', this.receiveMsg)
this.trialId = this.$route.query.trialId
this.getQCInfo()
this.getQCInfo(true)
this.getDicData()
this.activeName = this.data.DicomStudyCount > 0 ? 'dicom' : this.data.NoneDicomStudyCount > 0 ? 'none-dicom' : 'dicom'
// this.handleViewImages()
@ -1198,7 +1198,7 @@ export default {
}
},
// QC
getQCInfo() {
getQCInfo(isFirst = false) {
this.loading = true
getVisitQCInfo(this.data.Id, this.data.QCProcessEnum, this.currentQCType)
.then((res) => {
@ -1216,7 +1216,9 @@ export default {
this.studyList = res.Result.StudyList
this.seriesList = res.Result.SeriesList
this.noneDicomStudyList = res.Result.NoneDicomStudyList
if (isFirst) {
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('|')