el-table 合计并放表格最上方

写样式,控制该合计行在最上方,不写默认在最下方

/*这里是:table的合计*/
.el-table{
    display: flex;
    flex-direction: column;
}
/* order默认值为0,只需将表体order置为1即可移到最后,这样合计行就上移到表体上方 */
.el-table__body-wrapper {
    order: 1;
}
/* 如果你的"价格1或者日期加了fixed,那你需要加上这俩行代码,但是加了以后,这俩行可能会影响到其他页面,所以合计页面的都不加fixed"
.el-table__fixed-body-wrapper {
     top: 86px !important;
}
 */
.el-table__fixed-footer-wrapper {
    z-index: 0;
    top: 46px;
}

你可能感兴趣的:(el-table,elementui)