fix:修改格式;

This commit is contained in:
小杨 2024-11-12 14:48:14 +08:00
parent 28a2f95903
commit 6de59fabfa
1 changed files with 2 additions and 1 deletions

View File

@ -35,7 +35,7 @@
const recursive = (currentNode) => {
//
if (currentNode.parentNode) {
obj.unshift(Object.assign({curentId: currentNode.id,title:currentNode.itemtitle}, currentNode.parentNode))
obj.unshift({id: currentNode.id,title:currentNode.itemtitle})
recursive(currentNode.parentNode)
} else {
obj.unshift({id: currentNode.id,title:currentNode.itemtitle})
@ -50,6 +50,7 @@
textbookId:data.node.rootid,
bookList:getFullObj(data.node)
}
console.log(getNodeInfo.value,'log')
}
const save = () => {