From c52f825ee6ce31c4eae8a10decc17d3631864ba5 Mon Sep 17 00:00:00 2001 From: zhangyahui Date: Fri, 6 Mar 2026 11:51:11 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BC=9A=E8=AF=9D=E6=A0=87=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/home/agent/index.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/views/home/agent/index.vue b/src/views/home/agent/index.vue index 7abaefc..910a793 100644 --- a/src/views/home/agent/index.vue +++ b/src/views/home/agent/index.vue @@ -31,7 +31,7 @@ const route = useRoute() const projectStore = useProjectStore() - const agentTitle = ref('Retro Sofa Sketch') + const agentTitle = ref('Conversation') const previewType = ref<'sketch' | 'report'>('sketch') const VersionTreeIndexRef = ref() const agentRef = ref() @@ -66,6 +66,9 @@ if (res) agentRef.value.setChatInfo(res) let data = res?.project || res if (data?.latestNodeId) data.nodeId = data.latestNodeId + if (data) { + agentTitle.value = data.name + } projectStore.setProject({ ...data })