element plus table 修改勾选中的背景颜色

 

//修改table焦点行颜色
::v-deep(.el-table__body tr.current-row>td.el-table__cell) {background-color: #ffe8a6 ;}//修改table焦点行颜色【斑马线行】 
::v-deep(.el-table--striped .el-table__body tr.el-table__row--striped.current-row td.el-table__cell) {background-color: #ffe8a6 ;
}//修改table勾选行颜色
::v-deep(.el-table__body tr:has(.is-checked)>td.el-table__cell) {background-color: #ceddf5;}//修改table勾选行颜色【斑马线行】
::v-deep(.el-table--striped .el-table__body tr:has(.is-checked).el-table__row--striped td.el-table__cell) {background-color: #ceddf5;
}