表格合计

  summary={() => (
          <Table.Summary fixed={'bottom'}>
            <Table.Summary.Row>
              <Table.Summary.Cell index={0} colSpan={2}>
                合计
              </Table.Summary.Cell>
              <Table.Summary.Cell index={3} colSpan={3}>
                <div style={{ textAlign:"center"}}>{totalAmount}</div>
              </Table.Summary.Cell>
            </Table.Summary.Row>
          </Table.Summary>
        )}
const totalAmount = dataSource.reduce((acc, curr) => acc + curr.planEndDate, 0);

  

posted @ 2024-08-01 11:29  zjxgdq  阅读(2)  评论(0编辑  收藏  举报