分割部分功能按钮添加国际化
continuous-integration/drone/push Build is passing Details

main
wangxiaoshuang 2026-05-18 15:28:56 +08:00
parent 730a375509
commit efc3b03392
1 changed files with 3 additions and 3 deletions

View File

@ -95,15 +95,15 @@
<span>{{ $t('trials:reading:Segmentations:title:Show:Fill&Outline') }}</span>
<div style="display: flex;">
<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" />
</div>
<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" />
</div>
<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" />
</div>