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)
|
window.addEventListener('message', this.receiveMsg)
|
||||||
this.trialId = this.$route.query.trialId
|
this.trialId = this.$route.query.trialId
|
||||||
this.getQCInfo()
|
this.getQCInfo(true)
|
||||||
this.getDicData()
|
this.getDicData()
|
||||||
this.activeName = this.data.DicomStudyCount > 0 ? 'dicom' : this.data.NoneDicomStudyCount > 0 ? 'none-dicom' : 'dicom'
|
this.activeName = this.data.DicomStudyCount > 0 ? 'dicom' : this.data.NoneDicomStudyCount > 0 ? 'none-dicom' : 'dicom'
|
||||||
// this.handleViewImages()
|
// this.handleViewImages()
|
||||||
|
@ -1198,7 +1198,7 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// 获取QC界面基本信息
|
// 获取QC界面基本信息
|
||||||
getQCInfo() {
|
getQCInfo(isFirst = false) {
|
||||||
this.loading = true
|
this.loading = true
|
||||||
getVisitQCInfo(this.data.Id, this.data.QCProcessEnum, this.currentQCType)
|
getVisitQCInfo(this.data.Id, this.data.QCProcessEnum, this.currentQCType)
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
|
@ -1216,7 +1216,9 @@ export default {
|
||||||
this.studyList = res.Result.StudyList
|
this.studyList = res.Result.StudyList
|
||||||
this.seriesList = res.Result.SeriesList
|
this.seriesList = res.Result.SeriesList
|
||||||
this.noneDicomStudyList = res.Result.NoneDicomStudyList
|
this.noneDicomStudyList = res.Result.NoneDicomStudyList
|
||||||
this.activeName = this.studyList && this.studyList.length > 0 ? 'dicom' : this.noneDicomStudyList && this.noneDicomStudyList.length > 0 ? 'none-dicom' : 'dicom'
|
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.relationInfo = res.Result.RelationInfo
|
||||||
this.trialBodyPartTypes = this.relationInfo.TrialBodyPartTypes
|
this.trialBodyPartTypes = this.relationInfo.TrialBodyPartTypes
|
||||||
? this.relationInfo.TrialBodyPartTypes.trim().split('|')
|
? this.relationInfo.TrialBodyPartTypes.trim().split('|')
|
||||||
|
|
Loading…
Reference in New Issue