? <el-table :data="tableData" style="width: 100%" :row-class-name="tableRowClassName">
? ? ? ? // 返回的是每行的class类名
?????????tableRowClassName() {
? ? ? ? ? ? ????????return 'backgriund'
? ? ? ? }
// 必加
.el-table__body {
border-collapse: collapse;
}
.backgriund {
// 背景色渐变
background: linear-gradient(90deg, rgba(17, 181, 253, 0) 0%, rgba(17, 181, 253, 0.01) 20%, rgba(17, 181, 253, 0.1) 60%, rgba(17, 181, 253, 0) 100%) ;
// 下边框渐变
&::after {
position: absolute;
content: '';
left: 0;
width: 100%;
border-bottom: 1px solid;
// 如果设置 左右 边框的话 要改为 180
border-image: linear-gradient(90deg, rgba(25, 162, 255, 0) 10%, rgba(20, 125, 202, 1) 50%, rgba(25, 162, 255, 0) 90%) 2 2 2 2;
}
}