From 493a4081d5c97dd9df22d22ee6baa5409f477e17 Mon Sep 17 00:00:00 2001 From: amypeng Date: Thu, 11 Jun 2026 15:56:12 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=A7=AF=E5=88=86=E6=97=A0=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E5=B1=95=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fix: 积分无数据展示 --- src/forge/Information/Component/pointsDoc.jsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/forge/Information/Component/pointsDoc.jsx b/src/forge/Information/Component/pointsDoc.jsx index 2069525c..a7797ed2 100644 --- a/src/forge/Information/Component/pointsDoc.jsx +++ b/src/forge/Information/Component/pointsDoc.jsx @@ -48,7 +48,7 @@ function PointsDoc({ visible , onCancel , onSure , type , username , choosed , h let res = await getMyTopArticle(member.zoneId); if(res && res.data.code === 200){ setCurrentRow(res.data.data); - let newId = null; + let newId = null; if(res.data.data) { newId = res.data.data.docId; } @@ -68,7 +68,6 @@ function PointsDoc({ visible , onCancel , onSure , type , username , choosed , h setList(rows); }else{ setList([]); - setCurrentRow(null); } setTotal(result.data.total); }