完成评查点分组列表和评查点列表的页面,封装部分组件,重新构造样式文件结构
This commit is contained in:
+8
-8
@@ -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> = {
|
||||
|
||||
Reference in New Issue
Block a user