//element 表格
<el-table v-loading="loading" />
// 表格加载页面
.el-loading-mask {
background-color: rgba(0, 0, 0, .6);
}
// 表格默认加载图标隐藏
.el-table .el-loading-spinner .circular {
display: none !important; //隐藏默认样式
}
//采用自定义图标样式覆盖
.el-table .el-loading-spinner {
background-image: url('~@/assets/serach/003.png') !important; /* 你的加载动画图片路径 */
background-size: 42px 42px !important;
position: relative;
height: 42px;
width: 42px;
animation: loading-rotate 2s linear infinite;
left: 50%;
}
标签:el,loading,表格,element,42px,table,加载
From: https://blog.csdn.net/qq_42463588/article/details/140743553