@if (visible) {

完整分析报告

@if (colorResult) {

颜色分析

@for (c of colorResult.colors; track c.hex) {
{{ c.hex }} {{ c.percentage }}%
}
} @if (cadResult) {

CAD结构与空间洞察

结构要素

    @for (el of cadResult.structuralElements; track el.type + el.position) {
  • {{ el.type }} · 位置:{{ el.position }} · {{ el.changeable ? '可调整' : '不可调整' }}
  • }

空间指标

    @for (m of cadResult.spaceMetrics; track m.room) {
  • {{ m.room }} · 比例:{{ m.ratio }} · 通道宽:{{ m.width }}
  • }

动线与规范

    @for (f of cadResult.flowMetrics; track f.area) {
  • {{ f.area }} · 宽度:{{ f.width }} · {{ f.compliance ? '符合规范' : '需优化' }}
  • }
}
}