fix:修改格式传值;

This commit is contained in:
小杨 2024-11-12 11:04:04 +08:00
parent a79add8625
commit 78dce6dc6a
1 changed files with 5 additions and 2 deletions

View File

@ -24,7 +24,7 @@
const emit = defineEmits(['onsuccess'])
const dialogVisible = ref(false)
const getNodeInfo = ref([])
const getNodeInfo = ref({})
const openDialog = () => {
dialogVisible.value = true
@ -46,7 +46,10 @@
}
const nodeClick = (data) => {
getNodeInfo.value = getFullObj(data.node)
getNodeInfo.value = {
textbookId:data.node.rootid,
bookList:getFullObj(data.node)
}
}
const save = () => {