Commit ee222cfd authored by 张牧越's avatar 张牧越

bugfix

parent 7f7a7a3c
......@@ -140,9 +140,17 @@
>
<div class="warning-table-time">{{ column.log_time }}</div>
<div class="warning-table-device">{{ column.device_no }}</div>
<div class="warning-table-message">
{{ column.alarm_content }}
</div>
<el-tooltip
class="item"
effect="dark"
:content="column.alarm_content"
placement="top"
>
<div class="warning-table-message">
{{ column.alarm_content }}
</div>
</el-tooltip>
<div
class="warning-table-status"
:style="{ color: column.status == 1 ? '#FFC74C' : '' }"
......@@ -784,6 +792,11 @@ export default {
&:nth-child(2n) {
background: rgba(44, 96, 162, 0.1);
}
.warning-table-message {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
}
.warning-table-time {
width: 40%;
......@@ -796,6 +809,7 @@ export default {
}
#stats-container {
position: relative;
margin-bottom: 70px;
img {
width: 100%;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment