@@ -144,7 +144,7 @@ const columnConfig: ColumnConfigType[] = [
{
label: '预期收益',
formatter: (row) => {
- return row.amount - row.costPrice
+ return Math.round((row.amount - row.costPrice) * 100) / 100
}
},