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

main
wangxiaoshuang 2026-01-23 09:25:59 +08:00
parent 5a0cc41d5a
commit 8c84cb5101
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ export default {
getStudyList(obj) { getStudyList(obj) {
if (obj) { if (obj) {
var studyList = obj.StudyList || [] var studyList = obj.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 if (studyList.length === 0) return
this.studyList = studyList this.studyList = studyList
} }