From 8a1afb0c29b834c42bdf471952bffa6bf021eb88 Mon Sep 17 00:00:00 2001 From: freedakgmail Date: Sat, 13 Jun 2026 19:21:15 +0800 Subject: [PATCH] =?UTF-8?q?=E7=9C=8B=E6=9D=BF=EF=BC=9A=E8=A1=8C=E4=B8=9A?= =?UTF-8?q?=E5=88=97=E4=B8=8D=E5=86=8D=E6=8C=89=E5=8D=95=E5=AD=97=E7=AB=96?= =?UTF-8?q?=E6=8E=92=E6=8D=A2=E8=A1=8C=EF=BC=88nowrap=EF=BC=89=EF=BC=8C?= =?UTF-8?q?=E4=B8=9A=E5=8A=A1=E7=B1=BB=E5=9E=8B=E6=8C=89=E8=AF=8D=E4=B8=8D?= =?UTF-8?q?=E6=8B=86=E5=AD=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/src/pages/Dashboard.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/src/pages/Dashboard.tsx b/web/src/pages/Dashboard.tsx index c91bf6c..38dcc47 100644 --- a/web/src/pages/Dashboard.tsx +++ b/web/src/pages/Dashboard.tsx @@ -212,8 +212,8 @@ export function Dashboard(): JSX.Element { ); }, }, - { key: 'type', header: '业务类型', field: 'businessType' }, - { key: 'industry', header: '行业', field: 'industry' }, + { key: 'type', header: '业务类型', render: (r) => {r.businessType} }, + { key: 'industry', header: '行业', render: (r) => {r.industry} }, { key: 'score', header: '风险分', align: 'right', render: (r) => (r.riskScore !== undefined ? r.riskScore.toFixed(1) : '-') }, { key: 'grade',