1
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
e91ce47f28
commit
83a1d2d5a4
|
|
@ -171,14 +171,8 @@
|
||||||
<svg-icon icon-class="exit_mpr" class="svg-icon" style="transform: rotate(180deg);" />
|
<svg-icon icon-class="exit_mpr" class="svg-icon" style="transform: rotate(180deg);" />
|
||||||
</div>
|
</div>
|
||||||
<!-- 关键序列 -->
|
<!-- 关键序列 -->
|
||||||
<el-popover
|
<el-popover v-model="keySeriesPopoverVisible" placement="bottom" trigger="click"
|
||||||
v-model="keySeriesPopoverVisible"
|
popper-class="key-series-popper" v-if="!isFusion && !isMPR" @show="showKeySeriesPanel">
|
||||||
placement="bottom"
|
|
||||||
trigger="click"
|
|
||||||
popper-class="key-series-popper"
|
|
||||||
v-if="!isFusion && !isMPR"
|
|
||||||
@show="showKeySeriesPanel"
|
|
||||||
>
|
|
||||||
<ul class="key-series-list">
|
<ul class="key-series-list">
|
||||||
<li v-if="keyTaskInfo && keyTaskInfo.TaskBlindName" class="key-series-header">
|
<li v-if="keyTaskInfo && keyTaskInfo.TaskBlindName" class="key-series-header">
|
||||||
<div class="key-series-header-top">
|
<div class="key-series-header-top">
|
||||||
|
|
@ -197,12 +191,8 @@
|
||||||
<!-- 暂无关键序列 -->
|
<!-- 暂无关键序列 -->
|
||||||
{{ $t('trials:reading:keySeries:noData') }}
|
{{ $t('trials:reading:keySeries:noData') }}
|
||||||
</li>
|
</li>
|
||||||
<li
|
<li v-for="(kf, idx) in keySeries" :key="idx" class="key-series-item"
|
||||||
v-for="(kf, idx) in keySeries"
|
@click.stop.prevent="jumpToKeySeries(kf)">
|
||||||
:key="idx"
|
|
||||||
class="key-series-item"
|
|
||||||
@click.stop.prevent="jumpToKeySeries(kf)"
|
|
||||||
>
|
|
||||||
<div class="key-series-img">
|
<div class="key-series-img">
|
||||||
<img v-if="kf.PicturePath" :src="`${OSSclientConfig.basePath}${kf.PicturePath}`" />
|
<img v-if="kf.PicturePath" :src="`${OSSclientConfig.basePath}${kf.PicturePath}`" />
|
||||||
<svg-icon v-else icon-class="image" class="svg-icon default-icon" />
|
<svg-icon v-else icon-class="image" class="svg-icon default-icon" />
|
||||||
|
|
@ -212,7 +202,7 @@
|
||||||
<!-- 标注名称 -->
|
<!-- 标注名称 -->
|
||||||
<div class="key-series-label">{{ $t('trials:reading:keySeries:annotationName') }}</div>
|
<div class="key-series-label">{{ $t('trials:reading:keySeries:annotationName') }}</div>
|
||||||
<div class="key-series-uid" :title="kf.MarkName">
|
<div class="key-series-uid" :title="kf.MarkName">
|
||||||
{{ kf.MarkName}}
|
{{ kf.MarkName }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="key-series-meta">
|
<div class="key-series-meta">
|
||||||
|
|
@ -309,8 +299,8 @@
|
||||||
<svg-icon icon-class="refresh" class="svg-icon" />
|
<svg-icon icon-class="refresh" class="svg-icon" />
|
||||||
</div>
|
</div>
|
||||||
<!-- 更多 :class="['tool-item', readingTaskState === 2 ? 'tool-disabled' : '']" -->
|
<!-- 更多 :class="['tool-item', readingTaskState === 2 ? 'tool-disabled' : '']" -->
|
||||||
<div v-if="criterionType === 0" :class="['tool-item']" @click.stop="showPanel($event)"
|
<div v-if="criterionType === 0 && customizeStandards.length > 0" :class="['tool-item']"
|
||||||
@mouseleave="toolMouseout">
|
@click.stop="showPanel($event)" @mouseleave="toolMouseout">
|
||||||
<div class="dropdown">
|
<div class="dropdown">
|
||||||
<div class="icon" data-tool="more" :title="$t('trials:reading:button:more')">
|
<div class="icon" data-tool="more" :title="$t('trials:reading:button:more')">
|
||||||
<svg-icon icon-class="more" class="svg-icon" />
|
<svg-icon icon-class="more" class="svg-icon" />
|
||||||
|
|
@ -4327,7 +4317,7 @@ export default {
|
||||||
},
|
},
|
||||||
jumpToKeySeries(kf) {
|
jumpToKeySeries(kf) {
|
||||||
|
|
||||||
let tIdx = this.visitTaskList.findIndex(i=> i.VisitTaskId === this.keyTaskInfo.VisitTaskId)
|
let tIdx = this.visitTaskList.findIndex(i => i.VisitTaskId === this.keyTaskInfo.VisitTaskId)
|
||||||
if (tIdx < 0) return
|
if (tIdx < 0) return
|
||||||
const task = this.visitTaskList[tIdx]
|
const task = this.visitTaskList[tIdx]
|
||||||
const studyList = task.StudyList
|
const studyList = task.StudyList
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue