Compare commits
2 Commits
6f0f7a7d3a
...
742b60bba2
| Author | SHA1 | Date |
|---|---|---|
|
|
742b60bba2 | |
|
|
536fc7bbc8 |
|
|
@ -248,7 +248,7 @@
|
|||
<!-- 手册 -->
|
||||
<span>{{ $t('trials:reading:button:handbooks') }}</span>
|
||||
<span style="position: absolute;right: 20px;font-size: 20px;">
|
||||
<svg-icon :icon-class="manualsDialog.isFullscreen ? 'exit-fullscreen' : 'fullscreen'"
|
||||
<svg-icon :icon-class="isFullscreen ? 'exit-fullscreen' : 'fullscreen'"
|
||||
style="margin-right:10px;cursor: pointer;"
|
||||
@click="manualsDialog.isFullscreen = !manualsDialog.isFullscreen" />
|
||||
<svg-icon icon-class="close" style="cursor: pointer;" @click="manualsDialog.visible = false" />
|
||||
|
|
@ -266,7 +266,7 @@
|
|||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import { addNoneDicomMark, deleteTrialFileType, getCriterionReadingInfo, setReadKeyFile } from '@/api/trials'
|
||||
import { addNoneDicomMark, deleteTrialFileType, getCriterionReadingInfo } from '@/api/trials'
|
||||
import html2canvas from 'html2canvas'
|
||||
import {
|
||||
RenderingEngine,
|
||||
|
|
@ -1057,7 +1057,7 @@ export default {
|
|||
// 临时标记
|
||||
return
|
||||
}
|
||||
this.$emit('getMarkedFileIds', { type: "remove", visitTaskId: this.taskInfo.VisitTaskId, fileId: annotation.noneDicomFileId })
|
||||
this.$emit('getMarkedFileIds', { type: "remove", visitTaskId: this.taskInfo.VisitTaskId, fileId: annotation.noneDicomFileId})
|
||||
if (annotation.visitTaskId === this.taskInfo.VisitTaskId) {
|
||||
this.$emit('getEcrf', { type: "verifyAnnotationIsBound", VisitTaskId: annotation.visitTaskId, annotation })
|
||||
this.$nextTick(async () => {
|
||||
|
|
@ -1120,7 +1120,7 @@ export default {
|
|||
})
|
||||
|
||||
}
|
||||
|
||||
|
||||
} catch (e) {
|
||||
cornerstoneTools.annotation.state.addAnnotation(annotation)
|
||||
const renderingEngine = getRenderingEngine(renderingEngineId)
|
||||
|
|
@ -1261,7 +1261,7 @@ export default {
|
|||
// }
|
||||
}
|
||||
})
|
||||
this.$emit('getMarkedFileIds', { type: "add", visitTaskId: this.taskInfo.VisitTaskId, fileId: annotation.noneDicomFileId })
|
||||
this.$emit('getMarkedFileIds', { type: "add", visitTaskId: this.taskInfo.VisitTaskId, fileId: annotation.noneDicomFileId})
|
||||
},
|
||||
annotationSelectionChangeListener(e) {
|
||||
console.log('selection')
|
||||
|
|
|
|||
Loading…
Reference in New Issue