- {[
- { label: '绩效域数量', value: 8, color: 'text-indigo-600' },
- { label: '当前状态', value: '目录页', color: 'text-emerald-600' },
- { label: '页面阶段', value: '首版', color: 'text-amber-600' },
- { label: '左侧菜单', value: '未加入', color: 'text-rose-600' },
- ].map((item) => (
-
-
{item.value}
-
{item.label}
+
+
+
+
与其他绩效域的相互作用
- ))}
+
+ {detail.interactions.map((item, index) => (
+
+ ))}
+
+
+
+
+
+
+
检查方法
+
+
+ {detail.checks.map((check) => (
+
+
+ {check.goal}
+
+
+ {check.indicators.map((indicator, index) => (
+
+ ))}
+
+
+ ))}
+
+
+
+ )
+ }
+
+ return (
+
+
{performanceDomains.map((domain, index) => {
const Icon = iconMap[domain.id as keyof typeof iconMap]
+ const canOpen = Boolean(domain.detail)
return (
-
-
-
-
-
-
-
-
- {String(index + 1).padStart(2, '0')}
-
-
- {domain.name}
-
-
-
-
+
- 入口
-
-
-
-
- {domain.description}
-
-
-
-
英文标识
-
- {domain.nameEn}
+
+
+
+
+
+ {String(index + 1).padStart(2, '0')}
+
+
{domain.name}
+
+
{domain.nameEn}
+
+
+
+ ) : (
+
+
+
+
+
+
+
+ {String(index + 1).padStart(2, '0')}
+
+
{domain.name}
+
+
{domain.nameEn}
-
-
-
详情页后续再补
-
- 查看入口样式
-
-
-
-
+ )}
)
})}