fix : 修复分摊金额显示bug

This commit is contained in:
2024-06-09 23:48:42 +08:00
parent 53e461bc4d
commit 992eb2b890
2 changed files with 2 additions and 2 deletions

View File

@@ -107,7 +107,7 @@ const tableConfig = reactive({
label: '分摊金额',
align: 'center',
currentRender:({row})=>{
return <span>{toThousands(row.specialFundAmount)}</span>
return <span>{toThousands(row.afterTax)}</span>
}
}
],