zhuhao_dev #404

Merged
zhuhao merged 5 commits from zhuhao_dev into main 2024-11-12 15:53:28 +08:00
1 changed files with 2 additions and 1 deletions
Showing only changes of commit 77921f7e61 - Show all commits

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,
cataList:getFullObj(data.node)
}
console.log(getNodeInfo.value,'log')
}
const save = () => {