起因
出库按钮 置灰时,鼠标移入到表格的某行时,行背景颜色与按钮背景颜色会被覆盖住
最初颜色

实现效果
修改行背景颜色

<style>
/* 用来设置当前页面element全局table 选中某行时的背景色*/
.el-table__body tr.current-row>td{
background-color: #92cbf1!important;
color: #fff;
}
/*鼠标移入某行时的背景色*/
.el-table--enable-row-hover .el-table__body tr:hover > td {
background-color: #454545 !important;
/* color: #fff; */
}
</style>









