feat: 1.修改提示词模板的不用角色的操作权限。

2. 对接数据看板的数据。
3. 添加入口模块管理的页面。
This commit is contained in:
2025-11-21 17:16:07 +08:00
parent 3850d05bdd
commit dab0835605
13 changed files with 1877 additions and 297 deletions
+9
View File
@@ -0,0 +1,9 @@
import { Outlet } from "@remix-run/react";
/**
* 入口模块管理父路由
* 用于包裹子路由(列表页和新建/编辑页)
*/
export default function EntryModulesLayout() {
return <Outlet />;
}