25 lines
591 B
TypeScript
25 lines
591 B
TypeScript
import { Outlet } from "@remix-run/react";
|
|
import { type MetaFunction } from "@remix-run/node";
|
|
|
|
|
|
export const meta: MetaFunction = () => {
|
|
return [
|
|
{ title: "评查规则管理 - 中国烟草AI合同及卷宗审核系统" },
|
|
{
|
|
name: "rules",
|
|
content: "评查规则管理模块,包括评查点列表、创建和编辑功能"
|
|
}
|
|
];
|
|
};
|
|
|
|
export const handle = {
|
|
breadcrumb: "评查点列表",
|
|
to: "/rules/list" // 指定面包屑点击后跳转的路径
|
|
};
|
|
|
|
/**
|
|
* 规则管理路由布局
|
|
*/
|
|
export default function RulesLayout() {
|
|
return <Outlet />;
|
|
} |