
<el-table
:data="dateList"
stripe
max-height="95%"
:header-cell-style="{
background: '#004bff',
color: '#fff',
'font-size': '24px',
height: '80px',
}"
></el-table>
::v-deep.el-table {
background-color: transparent;
border: 1px solid #3278ff;
&.el-table::before {
background-color: transparent;
}
.el-table__empty-text {
color: #d2e6ff;
font-size: 28px;
line-height: 120px;
}
th.el-table__cell.is-leaf {
border-bottom: none !important;
}
.el-table__row--striped {
background-color: transparent;
}
.el-table__header tr,
.el-table__header th {
// background: #112c3c;
padding: 5px 0;
} //表头
th,
tr {
background-color: transparent;
.cell {
color: #d2e6ff;
background-color: transparent;
}
}
.el-table__body-wrapper {
.el-table__cell {
border-bottom: 1px solid #3278ff !important;
}
th,
tr {
background-color: transparent;
.cell {
height: 56px;
line-height: 56px;
font-size: 24px;
color: #d2e6ff;
background-color: transparent;
}
}
}
/* 取消el-table鼠标移入高亮 */
.el-table__body tr:hover > td {
// background-color:#113176 !important;
background-color: transparent !important;
}
.el-table__body tr.current-row > td {
background-color: transparent !important;
// background-color:#113176 !important;
}
.el-table__row--striped > td {
background-color: rgba($color: #3278ff, $alpha: 0.15) !important;
}
}