|
@@ -85,7 +85,8 @@ const List: React.FC<{}> = () => {
|
|
|
dataIndex: 'contractsIncomeProgress',
|
|
|
key: 'contractsIncomeProgress',
|
|
|
width: '12%',
|
|
|
- align: 'center'
|
|
|
+ align: 'center',
|
|
|
+ render:(text: number) => <span>{formatMoney(text)}%</span>
|
|
|
},
|
|
|
{
|
|
|
title: '支出合同金额',
|
|
@@ -100,7 +101,8 @@ const List: React.FC<{}> = () => {
|
|
|
dataIndex: 'contractsPayProgress',
|
|
|
key: 'contractsPayProgress',
|
|
|
width: '12%',
|
|
|
- align: 'center'
|
|
|
+ align: 'center',
|
|
|
+ render:(text: number) => <span>{formatMoney(text)}%</span>
|
|
|
}
|
|
|
]
|
|
|
const handleMenuClick = ({ key }: any) => {
|