Compare commits

..

No commits in common. "85ed9fd9b79183a23c34866e18a1ff72cbc4f593" and "e24b1cc722eea67b5d1a14716ae4181b9d4f44aa" have entirely different histories.

2 changed files with 13 additions and 24 deletions

View File

@ -15,7 +15,7 @@
</div>
<!-- 文件层级 -->
<div v-if="study.NoneDicomStudyFileList.length === 0" class="empty-text">
<slot name="empty">{{ $t('trials:audit:message:noData') }}</slot>
<slot name="empty">暂无数据</slot>
</div>
<div v-else id="imgList" style="height:100%;">
<div
@ -28,11 +28,7 @@
class="img-box"
@click="selected(item,i,j,true)"
>
<el-tooltip :content="item.FileName" placement="bottom-start">
<span>
{{ `${j+1}. ${item.FileName}` }}
</span>
</el-tooltip>
{{ `${j+1}. ${item.FileName}` }}
</div>
</div>
@ -100,7 +96,7 @@ export default {
visistTaskId: '',
taskBlindName: '',
readingTaskState: 2,
bp: []
bp:[]
}
},
async mounted() {
@ -192,7 +188,7 @@ export default {
}
var arr = bodyPart.split(separator)
var newArr = arr.map(i => {
return this.$fd('Bodypart', i.trim(), 'Code', { Bodypart: this.bp }, 'Name')
return this.$fd('Bodypart', i.trim(),'Code',{Bodypart:this.bp},'Name')
})
return newArr.join(' | ')
}
@ -269,15 +265,12 @@ export default {
display: inline-block;
box-sizing: border-box;
border-bottom: 2px solid #f3f3f3;
width: 200px;
width: 180px;
height: 50px;
line-height: 50px;
cursor: pointer;
// margin-bottom: 5px;
padding-left: 5px;
overflow: hidden;
text-overflow: ellipsis; /* 用省略号表示溢出的文本 */
white-space: nowrap;
}
.img-box:nth-last-child(1){
margin-bottom: 0px;

View File

@ -1,6 +1,6 @@
<template>
<div class="img-container">
<el-card v-loading="loading" class="box-card left">
<el-card class="box-card left" v-loading="loading">
<div v-if="isReadingShowSubjectInfo" class="title">
<h4>{{ subjectCode }} </h4>
<h4>{{ taskBlindName }}</h4>
@ -57,11 +57,7 @@
class="img-box"
@click="handleImageRead(task)"
>
<el-tooltip :content="task.TaskBlindName" placement="bottom-start">
<span>
{{ `${j+1}. ${task.TaskBlindName}` }}
</span>
</el-tooltip>
{{ `${j+1}. ${task.TaskBlindName}` }}
</div>
</div>
@ -71,7 +67,7 @@
</el-card>
<!-- 预览图像 -->
<el-card v-loading="loading" class="box-card right">
<el-card class="box-card right" v-loading="loading">
<div style="width:100%;height: 100%;">
<Preview
v-if="previewImage.imgList.length > 0"
@ -101,10 +97,10 @@
:subject-id="subjectId"
:visit-task-id="visitTaskId"
:criterion-id="otherInfo.TrialCriterionId"
:subject-code="subjectCode"
:task-blind-name="taskBlindName"
:is-reading-show-subject-info="isReadingShowSubjectInfo"
:ise-c-r-f-show-in-dicom-reading="iseCRFShowInDicomReading"
:subjectCode="subjectCode"
:taskBlindName="taskBlindName"
:isReadingShowSubjectInfo="isReadingShowSubjectInfo"
:iseCRFShowInDicomReading="iseCRFShowInDicomReading"
/>
</el-card>
</div>