Compare commits

..

No commits in common. "da21972c6357f41891831fe0c3de4000d1628785" and "361ab4e2fd1334708f6f333b12c206e47d61a4fa" have entirely different histories.

1 changed files with 110 additions and 112 deletions

View File

@ -10,10 +10,10 @@
</div>
<div class="ps">
<el-collapse v-model="activeNames">
<el-collapse-item v-for="(study, index) in studyList" :key="`${study.StudyId}`" :name="`${study.StudyId}`">
<template v-for="(study, index) in studyList">
<el-collapse-item :key="`${study.StudyId}`" :name="`${study.StudyId}`" v-if="!study.IsCriticalSequence">
<template slot="title">
<div v-if="!study.IsCriticalSequence" class="dicom-desc">
<div v-if="readingTool !== 3 || !study.IsCriticalSequence" class="dicom-desc">
<div style="text-overflow: ellipsis;overflow: hidden;">
<span v-if="taskInfo && taskInfo.IsShowStudyName && study.StudyName" :title="study.StudyName">
{{ study.StudyName }}
@ -58,7 +58,7 @@
</div>
</div>
<div v-else class="dicom-desc">
<div v-else>
<!-- 关键序列 -->
{{ $t('trials:reading:title:keySeries') }}
</div>
@ -127,7 +127,7 @@
</div>
</div>
</el-collapse-item>
</template>
</el-collapse>
</div>
@ -173,7 +173,6 @@ export default {
const digitPlaces = Number(localStorage.getItem('digitPlaces'))
this.digitPlaces = digitPlaces === -1 ? this.digitPlaces : digitPlaces
this.studyList = this.visitTaskInfo.StudyList
console.log(this.studyList)
this.annotations = this.visitTaskInfo.Annotations
if (this.studyList.length === 0) return
this.$nextTick(() => {
@ -204,7 +203,6 @@ export default {
this.activeInstanceId = null
},
activeStudy(id) {
console.log('activeStudy')
if (this.activeNames.indexOf(id) > -1) return
this.activeNames.push(id)
},