diff --git a/public/ideContainer/empty.png b/public/ideContainer/empty.png new file mode 100644 index 0000000..3c73b24 Binary files /dev/null and b/public/ideContainer/empty.png differ diff --git a/src/pages/ideContainer/index.tsx b/src/pages/ideContainer/index.tsx index 8d72bfe..4709aca 100644 --- a/src/pages/ideContainer/index.tsx +++ b/src/pages/ideContainer/index.tsx @@ -52,7 +52,7 @@ function IDEContainer() { currPage: 1, sceneId: urlParams.id }); - if (res.code === 200) setSubMenuData({ 'appList': res.data.list }); + if (res.code === 200) setSubMenuData({ 'appList': res.data.list.reverse() }); }; useEffect(() => { @@ -98,7 +98,25 @@ function IDEContainer() { {/* 默认内容,当没有选中任何tab时显示 */} {!selected.path && ( -
点击左侧菜单选择需要查看的功能
+
+ + + 请选择应用,预览配置信息 + +
)} ); @@ -197,6 +215,7 @@ function IDEContainer() { identity={urlParams.identity} subMenuData={subMenuData} onMenuSelect={(select) => setSelected(select)} + onRefresh={() => getAppList()} />