fix: 修复10401

This commit is contained in:
100011797 2023-03-21 09:38:34 +08:00
parent 8cd2b8644e
commit 85dd902ed7
1 changed files with 5 additions and 4 deletions

View File

@ -3,7 +3,11 @@
<!-- <j-spin :spinning="loading"> -->
<div class="card-container">
<div class="header">
<div class="title">{{ _props.data.name }}</div>
<div class="title">
<Ellipsis style="width: 100%;">
{{ _props.data.name }}
</Ellipsis>
</div>
<div class="extra">
<j-space :size="16">
<template v-for="i in actions" :key="i.key">
@ -97,12 +101,9 @@ const _props = defineProps({
.title {
width: 60%;
margin-right: 10px;
overflow: hidden;
color: rgba(0, 0, 0, 0.65);
font-weight: 400;
font-size: 12px;
white-space: nowrap;
text-overflow: ellipsis;
}
}