重新构建路由和配置样式文件

This commit is contained in:
2025-03-26 10:04:27 +08:00
parent a42a9990bf
commit 97ccf5a077
141 changed files with 88034 additions and 179 deletions
+20
View File
@@ -0,0 +1,20 @@
import { Outlet } from "@remix-run/react";
import { type MetaFunction } from "@remix-run/node";
export const links = () => [
{ rel: "stylesheet", href: "/rule-groups.css" }
];
export const meta: MetaFunction = () => {
return [
{ title: "中国烟草AI合同及卷宗审核系统 - 评查点分组管理" },
{ name: "description", content: "评查点分组管理页面" }
];
};
/**
* 评查点分组管理路由布局
*/
export default function RuleGroupsLayout() {
return <Outlet />;
}