tab切换问题
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
541d44b4f2
commit
850d64f0aa
|
@ -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('|')
|
||||
|
|
Loading…
Reference in New Issue