From 30ed7d22e6833c81d4884ced8cd9f8eb943689d0 Mon Sep 17 00:00:00 2001 From: ZLY Date: Tue, 28 Oct 2025 11:12:47 +0800 Subject: [PATCH] =?UTF-8?q?fix(event):=E4=BF=AE=E5=A4=8D=E4=BA=8B=E4=BB=B6?= =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=8E=A5=E5=8F=A3=E8=B0=83=E7=94=A8=E5=8F=82?= =?UTF-8?q?=E6=95=B0=E9=94=99=E8=AF=AF-=20=E5=B0=86=E5=88=A0=E9=99=A4?= =?UTF-8?q?=E4=BA=8B=E4=BB=B6=E6=8E=A5=E5=8F=A3=E8=B0=83=E7=94=A8=E5=8F=82?= =?UTF-8?q?=E6=95=B0=E4=BB=8E=20record.id=20=E6=9B=B4=E6=AD=A3=E4=B8=BA=20?= =?UTF-8?q?record.eventId?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/orchestration/event/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/orchestration/event/index.tsx b/src/pages/orchestration/event/index.tsx index 879e468..2a8e5ea 100644 --- a/src/pages/orchestration/event/index.tsx +++ b/src/pages/orchestration/event/index.tsx @@ -217,7 +217,7 @@ const EventContainer = () => { title="删除事件" content="事件删除后无法恢复,请谨慎删除!" onOk={async () => { - const res: any = await deleteEventItem(record.id); + const res: any = await deleteEventItem(record.eventId); if (res && res.code === 200) { Message.success('删除成功'); fetchEventData();