// 搜索时将节点进行收缩方法
// getShrink() {
// console.log('获取的node', this.nodeId)
// if (this.nodeId) {
// this.$refs.tree.store.nodesMap[this.nodeId].expanded = false
// }
// },
// 查找节点ff
// filterNode(value, data, node) {
// if (!value) return true
// if (node.label.indexOf(this.value) !== -1) {
// this.nodeId = data.id
// console.log('node')
// }
// const _array = [] // 这里使用数组存储 只是为了存储值。
// if (node.level !== 1) {
// this.getReturnNode(node, _array, value)
// }
// let result = false
// _array.forEach(item => {
// result = result || item
// })
// return result
// },
// getReturnNode(node, _array, value) {
// const isPass =
// node.data &&
// node.data.name &&
// node.data.name.indexOf(value) !== -1
// isPass ? _array.push(isPass) : ''
// if (!isPass && node.level !== 1 && node.parent) {
// this.getReturnNode(node.parent, _array, value)
// }
// this.getShrink()
// },
|