From 8275da69ce1c5fc2806e9ede558eb46f4c89d4d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=BE=8A?= <1794644493@qq.com> Date: Wed, 28 Aug 2024 01:56:32 +0000 Subject: [PATCH] fix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 羊. <1794644493@qq.com> --- src/components/DataPreview/financial/closing/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/DataPreview/financial/closing/index.tsx b/src/components/DataPreview/financial/closing/index.tsx index b2b15ec80..a11c50256 100644 --- a/src/components/DataPreview/financial/closing/index.tsx +++ b/src/components/DataPreview/financial/closing/index.tsx @@ -317,7 +317,8 @@ export const Closing: React.FC = ({ financial, current }) => { title: '对账状态', align: 'center', dataIndex: 'balanced', - render: (value) => { + render: (value, row) => { + value= row.assetEndAmount === row.financialAmount return value ? ( ) : ( -- Gitee