1.如图
2.解决办法 less样式穿透
// 去除table表格顶部的白线
/deep/ .el-table th.el-table__cell.is-leaf {
border-bottom: none;
}
// 去除table表格底部白色线条
/deep/ .el-table::before{
background-color:transparent;
}
3.解决后
1.如图
2.解决办法 less样式穿透
// 去除table表格顶部的白线
/deep/ .el-table th.el-table__cell.is-leaf {
border-bottom: none;
}
// 去除table表格底部白色线条
/deep/ .el-table::before{
background-color:transparent;
}
3.解决后