| | |
| | | import SemanticMappingPanel from "@/components/SemanticMappingPanel.vue"; |
| | | import SpatialMeasurementPanel from "@/components/SpatialMeasurementPanel.vue"; |
| | | import ChangeDetectionPanel from "@/components/ChangeDetectionPanel.vue"; |
| | | import AnomalyDetectionPanel from "@/components/AnomalyDetectionPanel.vue"; |
| | | import { capabilityById } from "@/data/capabilities"; |
| | | |
| | | const route = useRoute(); |
| | |
| | | <TrajectoryAnalysisPanel v-else-if="capability.id === '15-trajectory-analysis'" /> |
| | | <SemanticMappingPanel v-else-if="capability.id === '02-semantic-mapping'" /> |
| | | <SpatialMeasurementPanel v-else-if="capability.id === '04-spatial-measurement'" /> |
| | | <AnomalyDetectionPanel v-else-if="capability.id === '09-anomaly-detection'" /> |
| | | <a-empty v-else description="等待第一个可验证 Demo"><template #description><h2>尚无本地结果工件</h2><p>该能力已登记在目录中,但尚未产生可视化结果、结构化输出或运行元数据。</p></template></a-empty> |
| | | </div> |
| | | <div v-else class="view-container"><a-result status="404" title="未找到能力页面" sub-title="请从左侧目录选择已登记的能力。" /></div> |