This commit is contained in:
X1627315083@163.com
2026-03-02 11:45:40 +08:00
parent 50782b1e9c
commit 1d318f4094
2 changed files with 11 additions and 2 deletions

View File

@@ -66,7 +66,11 @@
getProjectInfo({ id: projectStore.state.id }).then((res) => {
// console.log('1111111',res);
agentRef.value.setChatInfo(res.conversation)
projectStore.setProject(res.project)
let data = res.project
if(data.latestNodeId)data.nodeId = data.latestNodeId
projectStore.setProject({
...data,
})
})
}