fix 79817

This commit is contained in:
赵霄
2023-12-27 13:47:00 +08:00
parent 9164e2dc8a
commit 67688a3443
@@ -298,7 +298,7 @@ export default {
* @param dataRef
*/
handleAddPeerFolder ({ dataRef }) {
console.log(dataRef)
this.$refs.treeModal.title = this.$t('newlyAdded')
this.$refs.treeModal.add({ parentId: dataRef.parentId }, true)
},
/**
@@ -306,6 +306,7 @@ export default {
* @param dataRef
*/
handleAddChildrenFolder ({ dataRef }) {
this.$refs.treeModal.title = this.$t('newlyAdded')
this.$refs.treeModal.add({ parentId: dataRef.id }, false)
},
/**
@@ -313,6 +314,7 @@ export default {
* @param dataRef
*/
handleEditTreeNode ({ dataRef }) {
this.$refs.treeModal.title = this.$t('edit')
this.$refs.treeModal.edit(dataRef)
},
/**