非DICOM预览文件样式更改
continuous-integration/drone/push Build is passing Details

uat_us
caiyiling 2024-09-03 16:15:23 +08:00
parent 2303c04857
commit fed2c1a842
1 changed files with 8 additions and 1 deletions

View File

@ -30,7 +30,11 @@
class="img-box"
@click="selected(item,i,j,true)"
>
{{ `${j+1}. ${item.FileName}` }}
<el-tooltip :content="item.FileName" placement="bottom-start">
<span>
{{ `${j+1}. ${item.FileName}` }}
</span>
</el-tooltip>
</div>
</div>
@ -408,6 +412,9 @@ export default {
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;