非DICOM阅片页面样式问题
parent
022a2005f1
commit
30fdd91764
|
|
@ -32,13 +32,8 @@
|
|||
<svg-icon icon-class="rotate" class="svg-icon" />
|
||||
</div>
|
||||
<!-- 查看关键序列 -->
|
||||
<el-popover
|
||||
v-model="keySeriesPopoverVisible"
|
||||
placement="bottom"
|
||||
trigger="click"
|
||||
popper-class="key-series-popper"
|
||||
@show="showKeySeriesPanel"
|
||||
>
|
||||
<el-popover v-model="keySeriesPopoverVisible" placement="bottom" trigger="click"
|
||||
popper-class="key-series-popper" @show="showKeySeriesPanel">
|
||||
<ul class="key-series-list">
|
||||
<li v-if="keyTaskInfo && keyTaskInfo.TaskBlindName" class="key-series-header">
|
||||
<div class="key-series-header-top">
|
||||
|
|
@ -56,12 +51,8 @@
|
|||
<li v-else-if="keySeries.length === 0" class="key-series-empty">
|
||||
{{ $t('trials:reading:keyImage:noData') }}
|
||||
</li>
|
||||
<li
|
||||
v-for="(kf, idx) in keySeries"
|
||||
:key="idx"
|
||||
class="key-series-item"
|
||||
@click.stop.prevent="jumpToKeySeries(kf)"
|
||||
>
|
||||
<li v-for="(kf, idx) in keySeries" :key="idx" class="key-series-item"
|
||||
@click.stop.prevent="jumpToKeySeries(kf)">
|
||||
<div class="key-series-img">
|
||||
<img v-if="kf.PicturePath" :src="`${OSSclientConfig.basePath}${kf.PicturePath}`" />
|
||||
<svg-icon v-else icon-class="image" class="svg-icon default-icon" />
|
||||
|
|
@ -119,11 +110,7 @@
|
|||
</div>
|
||||
|
||||
<!-- 截图 -->
|
||||
<div
|
||||
class="tool-item"
|
||||
:title="$t('trials:reading:button:screenShot')"
|
||||
@click.prevent="saveImage"
|
||||
>
|
||||
<div class="tool-item" :title="$t('trials:reading:button:screenShot')" @click.prevent="saveImage">
|
||||
<svg-icon icon-class="image" class="svg-icon" />
|
||||
</div>
|
||||
<!-- 重置 -->
|
||||
|
|
@ -131,8 +118,8 @@
|
|||
<svg-icon icon-class="refresh" class="svg-icon" />
|
||||
</div>
|
||||
<!-- 更多:class="['tool-item', readingTaskState === 2 ? 'tool-disabled' : '']" -->
|
||||
<div v-if="criterionType === 0" :title="$t('trials:reading:button:more')" :class="['tool-item']"
|
||||
@click.stop="showPanel($event)" @mouseleave="toolMouseout">
|
||||
<div v-if="criterionType === 0 && customizeStandardsNoneDicom.length > 0" :title="$t('trials:reading:button:more')"
|
||||
:class="['tool-item']" @click.stop="showPanel($event)" @mouseleave="toolMouseout">
|
||||
<div class="dropdown">
|
||||
<div class="icon" data-tool="more">
|
||||
<svg-icon icon-class="more" class="svg-icon" />
|
||||
|
|
@ -310,8 +297,8 @@
|
|||
</div>
|
||||
<div class="content-main" :ref="`video-content-main-${index}`" style="flex: 1;">
|
||||
<video v-if="v.currentFilePath" :ref="`videovideo-${index}`"
|
||||
:src="`${OSSclientConfig.basePath}${v.currentFilePath}`" crossorigin="anonymous"
|
||||
width="100%" height="100%" autoplay controls controlsList="nodownload"></video>
|
||||
:src="`${OSSclientConfig.basePath}${v.currentFilePath}`" crossorigin="anonymous" width="100%"
|
||||
height="100%" autoplay controls controlsList="nodownload"></video>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
|
@ -349,7 +336,7 @@
|
|||
</el-tab-pane>
|
||||
<!-- 其他 -->
|
||||
<el-tab-pane :label="$t('trials:reading:tab:others')" name="2">
|
||||
<Others v-if="activeName === '2'" :imageToolType="2"/>
|
||||
<Others v-if="activeName === '2'" :imageToolType="2" />
|
||||
</el-tab-pane>
|
||||
</el-tabs>
|
||||
</el-dialog>
|
||||
|
|
@ -2588,11 +2575,13 @@ export default {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
.personal_config {
|
||||
::v-deep .el-tabs__content {
|
||||
height: 450px;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
::v-deep .hot-keys-label {
|
||||
color: #dfdfdf !important;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue