新增配置列表和配置新增页面

This commit is contained in:
2025-03-28 15:41:11 +08:00
parent 540618b8ca
commit afadd79fe8
16 changed files with 1608 additions and 473 deletions
+23
View File
@@ -0,0 +1,23 @@
import { Outlet } from "@remix-run/react";
import { type MetaFunction } from "@remix-run/node";
export const meta: MetaFunction = () => {
return [
{ title: "配置列表 - 中国烟草AI合同及卷宗审核系统" },
{
name: "config-lists",
content: "配置列表模块,包括配置列表、创建和编辑功能"
}
];
};
export const handle = {
breadcrumb: "配置列表"
};
/**
* 配置列表路由布局
*/
export default function ConfigListsLayout() {
return <Outlet />;
}