CommunityUnitTree.vue
2.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<template>
<el-card class="tree-card">
<el-tree
ref="tree"
:data="treeData"
node-key="id"
:props="defaultProps"
:highlight-current="true"
:expand-on-click-node="false"
@node-click="handleNodeClick"
/>
</el-card>
</template>
<script>
import { queryCommunityUnitTree } from '@/api/community/adminRoomApi'
export default {
name: 'CommunityUnitTree',
data() {
return {
treeData: [],
defaultProps: {
children: 'children',
label: 'text'
}
}
},
methods: {
async loadTreeData() {
try {
const { data } = await queryCommunityUnitTree({ hc: 1.8 })
console.log( data)
this.treeData = data
//this.processTreeData(data)
} catch (error) {
this.$message.error(this.$t('common.fetchError'))
}
},
processTreeData(data) {
this.treeData = data.map(community => ({
id: `c_${community.communityId}`,
label: community.communityName,
communityId: community.communityId,
communityName: community.communityName,
children: community.floors.map(floor => ({
id: `f_${floor.floorId}`,
label: floor.floorNum,
floorId: floor.floorId,
floorNum: floor.floorNum,
children: floor.units.map(unit => ({
id: `u_${unit.unitId}`,
label: unit.unitNum,
unitId: unit.unitId,
unitNum: unit.unitNum
}))
}))
}))
},
handleNodeClick(data) {
if (data.id.startsWith('c_')) {
this.$emit('selectCommunity', {
communityId: data.communityId,
communityName: data.communityName
})
} else if (data.id.startsWith('f_')) {
this.$emit('selectFloor', {
floorId: data.floorId,
floorNum: data.floorNum
})
} else if (data.id.startsWith('u_')) {
this.$emit('selectUnit', {
unitId: data.unitId,
unitNum: data.unitNum
})
}
},
open() {
this.loadTreeData()
}
}
}
</script>
<style scoped>
.tree-card {
max-height: 80vh;
overflow-y: auto;
}
</style>