美化Element-ui Table表格暂无数据样式

1,960 阅读1分钟

Element的table表格自带的暂无数据样式过于简陋,而长表格数据为空更是不居中。

修改前element长列表数据为空样式(暂无数据不居中) image.png

修改后element长列表数据为空样式(暂无数据居中) image.png

通过修改全局style更改element的table数据为空样式,实现长表格数据为空样式居中

.el-table__empty-text {
  display: none !important;
}
.el-table__body{
  min-height: 0.5px;
}
.el-table__empty-block {
  width: 100% !important;
  margin: auto;
  height: 100%!important;
  min-height: 300px!important;
  line-height: 300px !important;
  box-sizing: border-box;
  background: url('~@/assets/imgs/backgroundEmpty.png') no-repeat center;
}