CN-65 fix: statistics-legend首列增加标题

This commit is contained in:
chenjinsong
2021-07-22 18:43:12 +08:00
parent 25959b060a
commit fd1bee2ad9

View File

@@ -1,8 +1,10 @@
<template>
<div class="chart__legend">
<div class="chart__table-top">
<div>Avg</div>
<div>Max</div>
<div class="chart__table-top table-below-box">
<div class="table__below-color"></div>
<div class="table__below-title">Name</div>
<div class="table__below-statistics">Avg</div>
<div class="table__below-statistics">Max</div>
</div>
<div class="chart__table-below">
<div v-for="(item,index) in data" :key="index" class="table-below-box">
@@ -47,10 +49,8 @@ export default {
height: 30px;
border-bottom: #E7EAED 1px solid;
display: flex;
justify-content: flex-end;
div {
width: 80px;
font-size: 13px;
line-height: 28px;
color: $--color-primary;
@@ -59,19 +59,19 @@ export default {
.chart__table-below {
width: 100%;
font-size: 13px;
.table-below-box {
}
.table-below-box {
width: 100%;
display: flex;
align-items: center;
line-height: 24px;
}
.table-below-box:hover {
}
.table-below-box:hover {
background-color: #f9f9f9;
border: 0;
color: #383838;
}
.table__below-color {
}
.table__below-color {
width: 27px;
height: 7px;
flex-shrink: 0;
@@ -82,8 +82,8 @@ export default {
width: 100%;
border-radius: 24%;
}
}
.table__below-title {
}
.table__below-title {
padding: 0 6px;
flex-shrink: 1;
flex-grow: 1;
@@ -91,13 +91,12 @@ export default {
min-width: 200px;
text-overflow: ellipsis;
white-space: nowrap;
}
.table__below-statistics {
}
.table__below-statistics {
width: 80px;
flex-shrink: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
</style>