@if (workspace(); as currentWorkspace) {

概览

查看当前 AI 工作空间的资源分布与运行状态。

工作区资源

@for (resource of resourceModules; track resource.title) {

{{ resource.title }}

{{ resource.description }}

}

工作区资源统计

@for (metric of metrics(); track metric.label) {
{{ metric.label }}
{{ overviewLoading() ? '...' : (metric.value ?? '—') }}
}

工作区信息

名称
{{ currentWorkspace.name }}
工作空间状态
{{ workspaceStatus() }}
更新时间
{{ currentWorkspace.updatedAt ? (currentWorkspace.updatedAt | date: 'yyyy/M/d HH:mm:ss') : '暂无' }}
描述
{{ currentWorkspace.description || '暂无描述' }}
} @else {
正在加载工作区信息...
}