分割部分功能按钮添加国际化
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
730a375509
commit
efc3b03392
|
|
@ -95,15 +95,15 @@
|
||||||
<span>{{ $t('trials:reading:Segmentations:title:Show:Fill&Outline') }}</span>
|
<span>{{ $t('trials:reading:Segmentations:title:Show:Fill&Outline') }}</span>
|
||||||
<div style="display: flex;">
|
<div style="display: flex;">
|
||||||
<div :class="['tool-item', SegmentConfig.renderOutline && SegmentConfig.renderFill ? 'tool-item-active' : '']"
|
<div :class="['tool-item', SegmentConfig.renderOutline && SegmentConfig.renderFill ? 'tool-item-active' : '']"
|
||||||
:title="$t('trials:dicom-show:Eraser')" @click.stop="changeSegmentConfig(true, true)">
|
:title="$t('trials:dicom-show:fill_outline')" @click.stop="changeSegmentConfig(true, true)">
|
||||||
<svg-icon icon-class="fill_outline" class="svg-icon" />
|
<svg-icon icon-class="fill_outline" class="svg-icon" />
|
||||||
</div>
|
</div>
|
||||||
<div :class="['tool-item', SegmentConfig.renderOutline && !SegmentConfig.renderFill ? 'tool-item-active' : '']"
|
<div :class="['tool-item', SegmentConfig.renderOutline && !SegmentConfig.renderFill ? 'tool-item-active' : '']"
|
||||||
:title="$t('trials:dicom-show:Eraser')" @click.stop="changeSegmentConfig(true, false)">
|
:title="$t('trials:dicom-show:outline')" @click.stop="changeSegmentConfig(true, false)">
|
||||||
<svg-icon icon-class="outline" class="svg-icon" />
|
<svg-icon icon-class="outline" class="svg-icon" />
|
||||||
</div>
|
</div>
|
||||||
<div :class="['tool-item', !SegmentConfig.renderOutline && SegmentConfig.renderFill ? 'tool-item-active' : '']"
|
<div :class="['tool-item', !SegmentConfig.renderOutline && SegmentConfig.renderFill ? 'tool-item-active' : '']"
|
||||||
:title="$t('trials:dicom-show:Eraser')" @click.stop="changeSegmentConfig(false, true)">
|
:title="$t('trials:dicom-show:fill')" @click.stop="changeSegmentConfig(false, true)">
|
||||||
<svg-icon icon-class="fill" class="svg-icon" />
|
<svg-icon icon-class="fill" class="svg-icon" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue