优化: workflow记录补project_id+前端审批/交互打磨

This commit is contained in:
lxy
2026-08-12 00:40:40 +08:00
parent d31a27512c
commit 7a1e80eac2
9 changed files with 83 additions and 32 deletions
+2 -3
View File
@@ -257,9 +257,8 @@ const activeConv = computed(() =>
watch(
() => activeConv.value?.title,
(newTitle, oldTitle) => {
if (!newTitle) return
if (oldTitle && oldTitle === newTitle) return
if (oldTitle) return
// FIX-17 P2-4:合并为单条件——标题从空→非空才触发淡入,其他变化不闪
if (!newTitle || oldTitle) return
titleFlash.value = true
if (_titleFlashTimer) clearTimeout(_titleFlashTimer)
_titleFlashTimer = setTimeout(() => { titleFlash.value = false }, 320)