完成评查点分组列表和评查点列表的页面,封装部分组件,重新构造样式文件结构

This commit is contained in:
2025-03-26 18:39:42 +08:00
parent 97ccf5a077
commit d9b9ce4676
34 changed files with 3281 additions and 3777 deletions
+8 -8
View File
@@ -22,14 +22,14 @@ export interface Rule {
}
export interface RuleGroup {
id: string;
name: string;
code: string;
description: string;
isActive: boolean;
orderIndex: number;
createdAt: string;
updatedAt: string;
id: string; // 分组ID
name: string; // 分组名称
code: string; // 分组编码
description: string; // 分组描述
status: 'active' | 'inactive'; // 分组状态
sortOrder: number; // 排序顺序
createdAt: string; // 创建时间
updatedAt: string; // 更新时间
}
export const RULE_TYPE_LABELS: Record<RuleType, string> = {