添加回调
This commit is contained in:
parent
e31904ed9f
commit
a75f880b30
|
@ -2,7 +2,7 @@
|
||||||
<div style="padding: 10px;">
|
<div style="padding: 10px;">
|
||||||
<el-dialog
|
<el-dialog
|
||||||
v-model="dialogVisible"
|
v-model="dialogVisible"
|
||||||
width="30%"
|
width="350"
|
||||||
append-to-body
|
append-to-body
|
||||||
>
|
>
|
||||||
<div style="display: flex;justify-content: center;">
|
<div style="display: flex;justify-content: center;">
|
||||||
|
@ -17,18 +17,20 @@
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref, defineExpose } from 'vue'
|
import { ref, defineExpose } from 'vue'
|
||||||
import ChooseTextbook from '@/components/choose-textbook/index.vue'
|
import ChooseTextbook from '@/components/choose-textbook/index.vue'
|
||||||
|
|
||||||
|
const emit = defineEmits(['onsuccess'])
|
||||||
|
|
||||||
const dialogVisible = ref(false)
|
const dialogVisible = ref(false)
|
||||||
const getNodeInfo = ref([])
|
const getNodeInfo = ref([])
|
||||||
|
|
||||||
const openDialog = () => {
|
const openDialog = () => {
|
||||||
dialogVisible.value = true
|
dialogVisible.value = true
|
||||||
}
|
}
|
||||||
|
|
||||||
const getFullObj = (node) => {
|
const getFullObj = (node) => {
|
||||||
const obj = []
|
const obj = []
|
||||||
const recursive = (currentNode) => {
|
const recursive = (currentNode) => {
|
||||||
|
@ -43,17 +45,17 @@
|
||||||
recursive(node)
|
recursive(node)
|
||||||
return obj
|
return obj
|
||||||
}
|
}
|
||||||
|
|
||||||
const nodeClick = (data) => {
|
const nodeClick = (data) => {
|
||||||
getNodeInfo.value = getFullObj(data.node)
|
getNodeInfo.value = getFullObj(data.node)
|
||||||
console.log(getNodeInfo.value, 'getNodeInfo.value')
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const save = () => {
|
const save = () => {
|
||||||
dialogVisible.value = false
|
dialogVisible.value = false
|
||||||
|
emit('onsuccess', getNodeInfo.value)
|
||||||
}
|
}
|
||||||
|
|
||||||
defineExpose({
|
defineExpose({
|
||||||
openDialog
|
openDialog
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in New Issue