From 4c93714a1c09308e38ad85abdaccf3d628ed6699 Mon Sep 17 00:00:00 2001 From: ZLY Date: Mon, 27 Oct 2025 13:40:54 +0800 Subject: [PATCH] =?UTF-8?q?feat(ideContainer):=20=E8=8E=B7=E5=8F=96?= =?UTF-8?q?=E5=BA=94=E7=94=A8=E8=AF=A6=E6=83=85=E7=9A=84=E5=90=8C=E6=97=B6?= =?UTF-8?q?=E8=8E=B7=E5=8F=96=E5=BA=94=E7=94=A8=E4=B8=8B=E7=9A=84=E6=89=80?= =?UTF-8?q?=E6=9C=89=E4=BA=8B=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/ideContainer/sideBar.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pages/ideContainer/sideBar.tsx b/src/pages/ideContainer/sideBar.tsx index 1fdb3fb..f493520 100644 --- a/src/pages/ideContainer/sideBar.tsx +++ b/src/pages/ideContainer/sideBar.tsx @@ -21,6 +21,7 @@ import { updateMenuData, updateFlowData, updateCurrentAppData } from '@/store/id import { addApp, getProjectEnv, editApp, deleteApp } from '@/api/apps'; import _ from 'lodash'; import { getAppInfoNew } from '@/api/appRes'; +import { getAppEventData } from '@/api/appEvent'; const TreeNode = Tree.Node; const FormItem = Form.Item; @@ -315,6 +316,7 @@ const SideBar: React.FC = ({ const currentMenu = _.cloneDeep(menuData[identity]); const index = currentMenu.findIndex(v => v.key === parentKey); const res: any = await getAppInfoNew(data.id); + getAppEventData(data.id); if (res.code === 200) { const children = currentMenu[index].children.find(v => v.id === data.id); children.children[0].children = res.data.events.map(item => {