refactor(视图): 钻取路径长度限制为120px

This commit is contained in:
wisonic-s 2024-05-09 11:34:29 +08:00
parent 1f843986d3
commit 4c1fec264b

View File

@ -17,6 +17,7 @@
@click.native="drillJump(index + 1)"
>
<span
class="drill-label"
:style="{'color': textColor}"
:title="filter.value[0]"
>{{ filter.value[0] }}</span>
@ -100,8 +101,12 @@ export default {
margin: 0!important;
}
.drill-item{
max-width: 120px;
overflow: hidden;
cursor: pointer;
}
.drill-label {
display: inline-block;
max-width: 120px;
white-space: nowrap;
overflow: hidden;
}
</style>