diff --git a/src/data/processes.json b/src/data/processes.json
index 0a80ee5..c755cd1 100644
--- a/src/data/processes.json
+++ b/src/data/processes.json
@@ -50,7 +50,16 @@
},
"TT032"
],
- "outputs": ["A008"],
+ "outputs": [
+ {
+ "id": "A008",
+ "detail": [
+ { "label": "子管理计划" },
+ { "label": "基准" },
+ { "label": "其他组件" }
+ ]
+ }
+ ],
"w5h1": {
"who": "项目经理主导,团队参与",
"what": "定义、准备、协调所有子计划并整合为综合项目管理计划",
diff --git a/src/pages/ProcessDetailPage.tsx b/src/pages/ProcessDetailPage.tsx
index a72000d..4292352 100644
--- a/src/pages/ProcessDetailPage.tsx
+++ b/src/pages/ProcessDetailPage.tsx
@@ -244,15 +244,14 @@ export function ProcessDetailPage() {
{inputDetail.name || inputDetail.id}
{inputDetail.nameEn && {inputDetail.nameEn}
}
{hasDetail && (
-
-
- {inputDetail.detail.map((item: any, idx: number) => (
- -
- •
- {item.label}
-
- ))}
-
+
+ 包含:
+ {inputDetail.detail.map((item: any, idx: number) => (
+
+ {item.label}
+ {idx < inputDetail.detail.length - 1 && '、'}
+
+ ))}
)}
{inputDetail.note && (
@@ -314,15 +313,14 @@ export function ProcessDetailPage() {
{toolDetail.name || toolDetail.id}
{toolDetail.nameEn &&
{toolDetail.nameEn}
}
{hasDetail && (
-
-
- {toolDetail.detail.map((item: any, idx: number) => (
- -
- •
- {item.label}
-
- ))}
-
+
+ 包含:
+ {toolDetail.detail.map((item: any, idx: number) => (
+
+ {item.label}
+ {idx < toolDetail.detail.length - 1 && '、'}
+
+ ))}
)}
{toolDetail.note && (
@@ -384,15 +382,14 @@ export function ProcessDetailPage() {
{outputDetail.name || outputDetail.id}
{outputDetail.nameEn &&
{outputDetail.nameEn}
}
{hasDetail && (
-
-
- {outputDetail.detail.map((item: any, idx: number) => (
- -
- •
- {item.label}
-
- ))}
-
+
+ 包含:
+ {outputDetail.detail.map((item: any, idx: number) => (
+
+ {item.label}
+ {idx < outputDetail.detail.length - 1 && '、'}
+
+ ))}
)}
{outputDetail.note && (