话不多说,上代码
引入使用:
<style lang="scss" scoped>
@import "@/style/tableFixedBackgroundColor.scss";
.page {
display: flex;
justify-content: flex-end;
}
::v-deep(.el-table__header) {
width: 100% !important;
}
......
</style>
样式文件:style>tableFixedBackgroundColor.scss
::v-deep(.el-table.is-scrolling-none th.el-table-fixed-column--right){
background-color: #f7fbff;
}
::v-deep(.el-table.is-scrolling-right th.el-table-fixed-column--right){
background-color: #f7fbff;
}