1
continuous-integration/drone/push Build is passing Details

main
wangxiaoshuang 2026-01-21 15:44:22 +08:00
parent c70970a6f6
commit c6770e71a5
1 changed files with 1 additions and 1 deletions

View File

@ -963,7 +963,7 @@ export default {
if (i < 0) return
this.activeTaskInfo.visitTaskIndex = i
var studyList = this.visitTaskList[i].StudyList || []
studyList = studyList.filter(i => !i.IsCriticalSequence && i.Modalities.indexOf('CT') !== -1 && i.Modalities.indexOf('PT') !== -1)
studyList = studyList.filter(i => !i.IsCriticalSequence && (i.Modalities.indexOf('CT') !== -1 || i.Modalities.indexOf('MR') !== -1) && i.Modalities.indexOf('PT') !== -1)
if (studyList.length === 0) return
this.studyList = studyList
}