feat(知识领域): 添加敏捷裁剪因素功能

1. 类型定义:
   - 新增TailoringFactor接口定义敏捷裁剪因素
   - 为KnowledgeArea添加可选的tailoringFactors字段

2. 数据更新:
   - 为KA05(项目质量管理)添加4个敏捷裁剪因素:
     * 政策合规与审计
     * 标准与法规合规性
     * 持续改进
     * 干系人参与

3. 页面展示:
   - 在知识领域详情页添加敏捷裁剪因素展示区域
   - 使用灯泡图标和编号列表样式
   - 支持深色模式

via [HAPI](https://hapi.run)

Co-Authored-By: HAPI <noreply@hapi.run>
This commit is contained in:
ittoview
2026-02-18 13:15:45 +00:00
parent 2a5b971f2f
commit c5a8e0525b
3 changed files with 55 additions and 2 deletions

View File

@@ -3,6 +3,12 @@
* PMP项目管理ITTO可视化学习平台
*/
// 敏捷裁剪因素项
export interface TailoringFactor {
title: string; // 因素标题
description: string; // 因素描述
}
// 知识领域
export interface KnowledgeArea {
id: string; // 如 "KA01"
@@ -13,6 +19,7 @@ export interface KnowledgeArea {
color: string; // 主题色
description: string; // 简要描述
processCount: number; // 包含的过程数量
tailoringFactors?: TailoringFactor[]; // 敏捷裁剪因素(可选)
}
// 过程组