Merge branch 'main' of https://gitea.frp.extimaging.com/XCKJ/irc_web
continuous-integration/drone/push Build is failing
Details
continuous-integration/drone/push Build is failing
Details
commit
84b1a2a4fa
|
@ -14,7 +14,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">暂无数据</slot>
|
<slot name="empty">{{ $t('trials:audit:message:noData') }}</slot>
|
||||||
</div>
|
</div>
|
||||||
<div v-else id="imgList" style="height:100%;overflow: hidden">
|
<div v-else id="imgList" style="height:100%;overflow: hidden">
|
||||||
<div
|
<div
|
||||||
|
@ -27,9 +27,15 @@
|
||||||
class="img-box"
|
class="img-box"
|
||||||
@click="selected(item,i,j,true)"
|
@click="selected(item,i,j,true)"
|
||||||
>
|
>
|
||||||
|
<div v-if="item.FileName.length < 15" class="img-text">
|
||||||
{{ `${j+1}. ${item.FileName}` }}
|
{{ `${j+1}. ${item.FileName}` }}
|
||||||
</div>
|
</div>
|
||||||
|
<el-tooltip v-else :content="item.FileName" placement="bottom">
|
||||||
|
<div class="img-text">
|
||||||
|
{{ `${j+1}. ${item.FileName}` }}
|
||||||
|
</div>
|
||||||
|
</el-tooltip>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -87,7 +93,7 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
async created() {
|
async created() {
|
||||||
this.bp = await this.$getBodyPart(this.$route.query.trialId);
|
this.bp = await this.$getBodyPart(this.$route.query.trialId)
|
||||||
},
|
},
|
||||||
async mounted() {
|
async mounted() {
|
||||||
if (this.$router.currentRoute.query.TokenKey) {
|
if (this.$router.currentRoute.query.TokenKey) {
|
||||||
|
@ -236,13 +242,19 @@ 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: 180px;
|
|
||||||
height: 50px;
|
|
||||||
line-height: 50px;
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
// margin-bottom: 5px;
|
// margin-bottom: 5px;
|
||||||
padding-left: 5px;
|
padding-left: 5px;
|
||||||
text-overflow:ellipsis;
|
|
||||||
|
}
|
||||||
|
.img-text{
|
||||||
|
display: inline-block;
|
||||||
|
width: 200px;
|
||||||
|
height: 50px;
|
||||||
|
line-height: 50px;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis; /* 用省略号表示溢出的文本 */
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
.img-box:nth-last-child(1){
|
.img-box:nth-last-child(1){
|
||||||
|
|
|
@ -28,10 +28,13 @@
|
||||||
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">
|
<div v-if="item.FileName.length < 15" class="img-text">
|
||||||
<span>
|
|
||||||
{{ `${j+1}. ${item.FileName}` }}
|
{{ `${j+1}. ${item.FileName}` }}
|
||||||
</span>
|
</div>
|
||||||
|
<el-tooltip v-else :content="item.FileName" placement="bottom">
|
||||||
|
<div class="img-text">
|
||||||
|
{{ `${j+1}. ${item.FileName}` }}
|
||||||
|
</div>
|
||||||
</el-tooltip>
|
</el-tooltip>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -269,12 +272,15 @@ 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;
|
|
||||||
height: 50px;
|
|
||||||
line-height: 50px;
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
// margin-bottom: 5px;
|
// margin-bottom: 5px;
|
||||||
padding-left: 5px;
|
padding-left: 5px;
|
||||||
|
}
|
||||||
|
.img-text{
|
||||||
|
display: inline-block;
|
||||||
|
width: 200px;
|
||||||
|
height: 50px;
|
||||||
|
line-height: 50px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis; /* 用省略号表示溢出的文本 */
|
text-overflow: ellipsis; /* 用省略号表示溢出的文本 */
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
|
|
@ -30,10 +30,13 @@
|
||||||
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">
|
<div v-if="item.FileName.length < 15" class="img-text">
|
||||||
<span>
|
|
||||||
{{ `${j+1}. ${item.FileName}` }}
|
{{ `${j+1}. ${item.FileName}` }}
|
||||||
</span>
|
</div>
|
||||||
|
<el-tooltip v-else :content="item.FileName" placement="bottom">
|
||||||
|
<div class="img-text">
|
||||||
|
{{ `${j+1}. ${item.FileName}` }}
|
||||||
|
</div>
|
||||||
</el-tooltip>
|
</el-tooltip>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -57,13 +60,15 @@
|
||||||
class="img-box"
|
class="img-box"
|
||||||
@click="handleImageRead(task)"
|
@click="handleImageRead(task)"
|
||||||
>
|
>
|
||||||
<el-tooltip :content="task.TaskBlindName" placement="bottom-start">
|
<div v-if="task.TaskBlindName.length < 15" class="img-text">
|
||||||
<span>
|
|
||||||
{{ `${j+1}. ${task.TaskBlindName}` }}
|
{{ `${j+1}. ${task.TaskBlindName}` }}
|
||||||
</span>
|
</div>
|
||||||
|
<el-tooltip v-else :content="task.TaskBlindName" placement="bottom">
|
||||||
|
<div class="img-text">
|
||||||
|
{{ `${j+1}. ${task.TaskBlindName}` }}
|
||||||
|
</div>
|
||||||
</el-tooltip>
|
</el-tooltip>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</el-tab-pane>
|
</el-tab-pane>
|
||||||
|
@ -410,12 +415,15 @@ 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;
|
|
||||||
height: 50px;
|
|
||||||
line-height: 50px;
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
// margin-bottom: 5px;
|
// margin-bottom: 5px;
|
||||||
padding-left: 5px;
|
padding-left: 5px;
|
||||||
|
}
|
||||||
|
.img-text{
|
||||||
|
display: inline-block;
|
||||||
|
width: 200px;
|
||||||
|
height: 50px;
|
||||||
|
line-height: 50px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis; /* 用省略号表示溢出的文本 */
|
text-overflow: ellipsis; /* 用省略号表示溢出的文本 */
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
|
Loading…
Reference in New Issue