国际化补充

uat
caiyiling 2025-03-14 10:35:20 +08:00
parent 3167c2bea7
commit dc0229810d
3 changed files with 7 additions and 6 deletions

View File

@ -20,7 +20,7 @@
:prop="question.Id" :prop="question.Id"
:rules="[ :rules="[
{ required: (question.IsRequired === 0 || (question.IsRequired ===1 && question.RelevanceId && (questionForm[question.RelevanceId] === question.RelevanceValue))) && question.Type!=='group' && question.Type!=='summary', { required: (question.IsRequired === 0 || (question.IsRequired ===1 && question.RelevanceId && (questionForm[question.RelevanceId] === question.RelevanceValue))) && question.Type!=='group' && question.Type!=='summary',
message: '请注明', trigger: ['blur', 'change']}, message: $t('common:ruleMessage:specify'), trigger: ['blur', 'change']},
]" ]"
:class="[question.Type==='group'?'mb':question.Type==='upload'?'uploadWrapper':'']" :class="[question.Type==='group'?'mb':question.Type==='upload'?'uploadWrapper':'']"
> >

View File

@ -47,7 +47,7 @@
> >
<svg-icon icon-class="arrow" class="svg-icon" /> <svg-icon icon-class="arrow" class="svg-icon" />
</div> </div>
<!-- 矩形工具RectangleROITool --> <!-- 矩形工具 -->
<div <div
:class="['tool-item', readingTaskState === 2 ? 'tool-disabled' : '', activeTool === 'RectangleROI' ? 'tool-item-active' : '']" :class="['tool-item', readingTaskState === 2 ? 'tool-disabled' : '', activeTool === 'RectangleROI' ? 'tool-item-active' : '']"
:title="$t('trials:dicom-show:RectangleRoi')" :title="$t('trials:dicom-show:RectangleRoi')"
@ -753,8 +753,9 @@ export default {
if (this.readingTaskState === 2) return if (this.readingTaskState === 2) return
const { annotation } = e.detail const { annotation } = e.detail
if (!annotation) return if (!annotation) return
if (!annotation.annotationId) return if (annotation.annotationId) {
await deleteTrialFileType(annotation.annotationId) await deleteTrialFileType(annotation.annotationId)
}
const renderingEngine = getRenderingEngine(renderingEngineId) const renderingEngine = getRenderingEngine(renderingEngineId)
const viewport = renderingEngine.getViewport(`canvas-${this.activeCanvasIndex}`) const viewport = renderingEngine.getViewport(`canvas-${this.activeCanvasIndex}`)
viewport.render() viewport.render()

View File

@ -29,8 +29,8 @@
</div> </div>
</div> </div>
<div v-else> <div v-else>
<!-- 关键序列 --> <!-- 关键文件 -->
关键文件 {{ $t('trials:noneDicom:title:keyFiles') }}
</div> </div>
</template> </template>
<div class="file-list-container"> <div class="file-list-container">