标准清单 高级检索

This commit is contained in:
宋伟佳
2021-06-25 17:57:33 +08:00
parent a2acbe7ae6
commit b843b0d975
60 changed files with 572 additions and 698 deletions
@@ -120,13 +120,11 @@ export default {
},
watch:{
value(newValue, oldValue) {
console.log(newValue)
this.resolveValueToResultNodes(newValue)
}
},
methods: {
handleSelectTreeClick(treeId, treeNode) {
console.log(treeId, treeNode)
this.selectNode = { ...treeNode }
},
@@ -186,7 +184,6 @@ export default {
handleResultTreeEdit(treeId, treeNode) {
const wxId = treeNode.wxId
const findNode = this.resultNodes.find(item => item.wxId === wxId)
console.log(findNode)
if (findNode && findNode.type === 'user') {
this.editNode = findNode
this.editNodeForForm = { ...findNode }
@@ -223,7 +220,6 @@ export default {
userName: item.type === 'user' && item.nativeName || null
}
})
console.log(result)
this.$emit('input', result)
},
@@ -63,7 +63,6 @@ export default {
},
watch:{
value(newValue, oldValue) {
console.log(newValue)
this.resolveValueToResultNodes(newValue)
}
},