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

View File

@ -1,6 +1,6 @@
<template> <template>
<div class="img-container"> <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"> <div v-if="isReadingShowSubjectInfo" class="title">
<h4>{{ subjectCode }} </h4> <h4>{{ subjectCode }} </h4>
<h4>{{ taskBlindName }}</h4> <h4>{{ taskBlindName }}</h4>
@ -57,11 +57,7 @@
class="img-box" class="img-box"
@click="handleImageRead(task)" @click="handleImageRead(task)"
> >
<el-tooltip :content="task.TaskBlindName" placement="bottom-start"> {{ `${j+1}. ${task.TaskBlindName}` }}
<span>
{{ `${j+1}. ${task.TaskBlindName}` }}
</span>
</el-tooltip>
</div> </div>
</div> </div>
@ -71,7 +67,7 @@
</el-card> </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%;"> <div style="width:100%;height: 100%;">
<Preview <Preview
v-if="previewImage.imgList.length > 0" v-if="previewImage.imgList.length > 0"
@ -101,10 +97,10 @@
:subject-id="subjectId" :subject-id="subjectId"
:visit-task-id="visitTaskId" :visit-task-id="visitTaskId"
:criterion-id="otherInfo.TrialCriterionId" :criterion-id="otherInfo.TrialCriterionId"
:subject-code="subjectCode" :subjectCode="subjectCode"
:task-blind-name="taskBlindName" :taskBlindName="taskBlindName"
:is-reading-show-subject-info="isReadingShowSubjectInfo" :isReadingShowSubjectInfo="isReadingShowSubjectInfo"
:ise-c-r-f-show-in-dicom-reading="iseCRFShowInDicomReading" :iseCRFShowInDicomReading="iseCRFShowInDicomReading"
/> />
</el-card> </el-card>
</div> </div>
@ -418,7 +414,7 @@ export default {
padding-left: 5px; padding-left: 5px;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; /* 用省略号表示溢出的文本 */ text-overflow: ellipsis; /* 用省略号表示溢出的文本 */
white-space: nowrap; white-space: nowrap;
} }
.img-box:nth-last-child(1){ .img-box:nth-last-child(1){
margin-bottom: 0px; margin-bottom: 0px;