From bc8fdcd2a021c35ce7f78b245abbf0e3412d8f36 Mon Sep 17 00:00:00 2001 From: ZLY Date: Thu, 9 Oct 2025 09:28:40 +0800 Subject: [PATCH] =?UTF-8?q?pref(ideContainer):=20=E4=BC=98=E5=8C=96renderC?= =?UTF-8?q?ontent=E5=87=BD=E6=95=B0=E4=B8=AD=E5=AF=B9=E4=BA=8E=E4=B8=80?= =?UTF-8?q?=E6=89=93=E5=BC=80=E6=A0=87=E7=AD=BE=E7=9A=84=E5=AD=98=E5=9C=A8?= =?UTF-8?q?=E5=88=A4=E6=96=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/ideContainer/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/ideContainer/index.tsx b/src/pages/ideContainer/index.tsx index 78422fc..1fcaa39 100644 --- a/src/pages/ideContainer/index.tsx +++ b/src/pages/ideContainer/index.tsx @@ -14,6 +14,7 @@ import ProjectContainer from '@/pages/orchestration/project'; import ApplicationContainer from '@/pages/orchestration/application'; import EventContainer from '@/pages/orchestration/event'; import GlobalVarContainer from '@/pages/orchestration/globalVar'; +import AppCompComponent from '@/pages/orchestration/appCompComponent'; import ComponentList from '@/pages/componentDevelopment/componentList'; type UrlParamsOptions = { @@ -23,7 +24,6 @@ type UrlParamsOptions = { const CompListComponent = () =>
组件列表
; const AppInstanceComponent = () =>
应用实例
; -const AppCompComponent = () =>
组件
; const MyComponents = () =>
我的组件
; const MatchingComponents = () =>
协同组件
; const ComponentReview = () =>
组件审核
; @@ -82,7 +82,7 @@ function IDEContainer() {
{ALL_PATHS.map((path, i) => { // 检查该路径的组件是否已打开 - const isOpened = openedTabs.has(selected.key); + const isOpened = openedTabs.has(path); // 检查是否是当前选中的路径 const isSelected = selected.path === path;