|
|
@ -43,7 +43,7 @@ export const columns: BasicColumn[] = [ |
|
|
|
}, |
|
|
|
{ |
|
|
|
title: '最新数据时间', |
|
|
|
dataIndex: 'lastTimeS', |
|
|
|
dataIndex: 'lastTime', |
|
|
|
}, |
|
|
|
{ |
|
|
|
title: '本月应收数据', |
|
|
@ -58,7 +58,7 @@ export const columns: BasicColumn[] = [ |
|
|
|
dataIndex: 'completionRate', |
|
|
|
customRender({ record }) { |
|
|
|
if (record.actualIncome) { |
|
|
|
return record.actualIncome / record.planIncome; |
|
|
|
return (record.actualIncome*100/ record.planIncome).toFixed(2); |
|
|
|
} |
|
|
|
return null; |
|
|
|
}, |
|
|
|