病灶对齐逻辑更改
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
c657bb8783
commit
aea6a3f8c8
|
@ -2030,13 +2030,16 @@ export default {
|
|||
return
|
||||
} else if (Object.keys(firstAddSeries).length !== 0 && Object.keys(currentAddSeries).length === 0) {
|
||||
// 当前访视序列与首次出现病灶的序列对齐
|
||||
currentAddSeries = this.getRelatedSeries(this.visitTaskList[index], firstAddSeries)
|
||||
// currentAddSeries = this.getRelatedSeries(this.visitTaskList[index], firstAddSeries)
|
||||
|
||||
if (Object.keys(currentAddSeries).length === 0) {
|
||||
// 未找到对齐的,则就显示当前最后一个窗口现实的序列信息
|
||||
// if (Object.keys(currentAddSeries).length === 0) {
|
||||
// // 未找到对齐的,则就显示当前最后一个窗口现实的序列信息
|
||||
// currentAddSeries = this.$refs[`viewport-${this.cells.length - 1}`][0].series
|
||||
// }
|
||||
|
||||
// 显示当前序列
|
||||
currentAddSeries = this.$refs[`viewport-${this.cells.length - 1}`][0].series
|
||||
}
|
||||
}
|
||||
} else {
|
||||
// 无序
|
||||
currentAddSeries = this.getMarkedSeries(this.visitTaskList[index].StudyList, obj)
|
||||
|
@ -2050,6 +2053,7 @@ export default {
|
|||
if (i === this.cells.length - 1) {
|
||||
this.$refs[`viewport-${i}`][0].setSeriesInfo(currentAddSeries, true)
|
||||
this.activeViewportIndex = i
|
||||
this.$refs[currentAddSeries.TaskInfo.VisitTaskId][0].setSeriesActive(currentAddSeries.StudyIndex, currentAddSeries.SeriesIndex)
|
||||
} else {
|
||||
this.$refs[`viewport-${i}`][0].setSeriesInfo(firstAddSeries, true)
|
||||
}
|
||||
|
|
|
@ -80,7 +80,7 @@
|
|||
</span>
|
||||
<span v-show="series.LoadedImageCount >= series.InstanceCount">{{ series.Modality }}: {{ series.InstanceCount }} image</span>
|
||||
</div>
|
||||
<div style="line-height: 16px;">
|
||||
<div style="line-height: 12px;">
|
||||
<i v-show="series.IsBeMark || markedSeriesIds.includes(series.Id)" class="el-icon-star-on" style="font-size: 12px;color: #ff5722;" />
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue