1b0108e518
2. 优化登录样式
25 lines
610 B
TypeScript
25 lines
610 B
TypeScript
import { Outlet } from "@remix-run/react";
|
|
import { type MetaFunction } from "@remix-run/node";
|
|
|
|
|
|
export const meta: MetaFunction = () => {
|
|
return [
|
|
{ title: "系统设置 - 中国烟草AI合同及卷宗审核系统" },
|
|
{
|
|
name: "settings",
|
|
content: "评查点分组,入口模块管理,角色权限管理,文档类型管理,提示词管理"
|
|
}
|
|
];
|
|
};
|
|
|
|
export const handle = {
|
|
breadcrumb: "系统设置",
|
|
to: "/settings" // 指定面包屑点击后跳转的路径
|
|
};
|
|
|
|
/**
|
|
* 规则管理路由布局
|
|
*/
|
|
export default function SettingsLayout() {
|
|
return <Outlet />;
|
|
} |