feat: align frontend document and rule management flows

This commit is contained in:
wren
2026-05-06 09:40:37 +08:00
parent 8a5044b024
commit c54f84382b
41 changed files with 4239 additions and 2903 deletions
+4 -4
View File
@@ -15,10 +15,10 @@ export const links = () => [
export const meta: MetaFunction = () => {
return [
{ title: '合同模板列表 - 智慧法务' },
{ title: '模板列表 - 合同管理 - 智慧法务' },
{
name: 'description',
content: '浏览和管理所有合同模板,按分类查看各种类型的合同模板。'
content: '浏览合同管理模块下的模板列表,按分类查看和使用合同模板。'
}
];
};
@@ -238,7 +238,7 @@ export default function ContractTemplateList() {
<div className="result-header">
<div>
<h2 className="text-2xl font-semibold mb-2">
{currentCategory === '全部' ? '合同模板库' : `${currentCategory}模板`}
{currentCategory === '全部' ? '合同管理' : `${currentCategory}模板`}
</h2>
<div className="result-info">
<span className="result-count">{total}</span>
@@ -307,4 +307,4 @@ export default function ContractTemplateList() {
// 面包屑导航配置
export const handle = {
breadcrumb: "合同列表"
};
};