Compare commits

..

No commits in common. "169d6d7c31e565a02d089484fc143bd6d063919b" and "f0fcbed61e461999715536d843673718a7ea6a22" have entirely different histories.

1 changed files with 10 additions and 12 deletions

View File

@ -2,7 +2,7 @@
<div style="padding: 10px;">
<el-dialog
v-model="dialogVisible"
width="350"
width="30%"
append-to-body
>
<div style="display: flex;justify-content: center;">
@ -22,8 +22,6 @@
import { ref, defineExpose } from 'vue'
import ChooseTextbook from '@/components/choose-textbook/index.vue'
const emit = defineEmits(['onsuccess'])
const dialogVisible = ref(false)
const getNodeInfo = ref([])
@ -48,11 +46,11 @@
const nodeClick = (data) => {
getNodeInfo.value = getFullObj(data.node)
console.log(getNodeInfo.value, 'getNodeInfo.value')
}
const save = () => {
dialogVisible.value = false
emit('onsuccess', getNodeInfo.value)
}
defineExpose({