antdesignvue table底部增加合计行
方法一:
思路:用 footer API 通过设置 overflow:auto 使底部合计栏出现滚动条,然后通过控制一条滚动使另一条滚动条随之滚动即可
const warp = domWarp.current.getElementsByClassName("ant-table-body")[0];
const wrapBottom = domWarp.current.getElementsByClassName('ant-table-footer')[0]
warp.addEventListener("scroll",() => {
wrapBottom.scrollLeft = warp.scrollLeft
},true)
方法二:
思路:获取到合计的数据,将数据 push
到表格里面去, 然后将表格的最后一个元素设置 position:sticky
即可固定在底部(注:一定要设置在 td 身上
)
tr:last-child td {
background: #fff;
position: sticky;
bottom: 0px;
z-index: 1;
box-shadow: 5px 0 10px #e4e4e4;
}
this.data = res.data
this.data.push({xuhao:'合计', money:sumMoney})
columns: [
{
title: '序号',
dataIndex: 'xuhao',
align: 'center',
fixed: 'left',
customRender: (text, record, index) => {
return record.xuhao=='合计'?'合计':index+1
}
},...
...
]
更多推荐
所有评论(0)