order默认值为0,只需将表体order置为1即可移到最后,这样合计行就上移到表体上方
::v-deep .el-table {
display: flex;
flex-direction: column;
}
::v-deep .el-table__body-wrapper {
order: 1;
}
// 若没有固定列,以下代码可以不写
// 将固定列放在首行
/deep/ .el-table__fixed-body-wrapper {
top: 96px !important; // 根据自己的项目进行微调
}
/deep/ .el-table__fixed-footer-wrapper {
z-index: 0;
top: 48px; // 根据自己的项目进行微调
}