原 v-if="!batchMode && currentProject" 会因为 currentProject.value 异步未赋值或 ref unwrap 时机问题, 导致 el-descriptions 整块不渲染; 而 info-bar 用可选链 + || '-' 不受影响。 修复: - v-if 简化为 v-if="!batchMode" - 6 个字段访问统一用 currentProject?.xx || '-' (兜底) - 这样单条模式一定渲染 el-descriptions 框架, 数据未加载完时显示 - Co-Authored-By: Claude <noreply@anthropic.com>