Files
guoju0808/ry-vue3
郭庆泰andClaude bf1b4a3010 fix(projects-assign): el-descriptions v-if 条件改为仅 !batchMode
原 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>
2026-08-20 23:11:55 +08:00
..
2026-08-16 21:24:53 +08:00
2026-08-16 21:24:53 +08:00
2026-08-16 13:42:26 +08:00