Compare commits

..

No commits in common. "2fd6e1893b537b5cf7d5c172e0b7165bb9eddc2b" and "08c911d4a05bec1299f7886f249e15f877d39780" have entirely different histories.

3 changed files with 6 additions and 7 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: $t('common:ruleMessage:specify'), trigger: ['blur', 'change']}, message: '请注明', 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,9 +753,8 @@ 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) { if (!annotation.annotationId) return
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">