ChooseOrgTree.vue
1.7 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
<template>
<el-dialog
:title="$t('scheduleClassesPage.selectOrg')"
:visible.sync="dialogVisible"
width="60%"
>
<el-tree
ref="orgTree"
:data="chooseOrgInfo.orgs"
:props="defaultProps"
node-key="id"
highlight-current
@node-click="handleNodeClick"
/>
<span slot="footer" class="dialog-footer">
<el-button @click="dialogVisible = false">{{ $t('common.cancel') }}</el-button>
<el-button type="primary" @click="_doChooseOrg">{{ $t('common.confirm') }}</el-button>
</span>
</el-dialog>
</template>
<script>
import { getCommunityId } from '@/api/community/communityApi'
import { listOrgTree } from '@/api/org/orgApi'
export default {
name: 'ChooseOrgTree',
data() {
return {
dialogVisible: false,
chooseOrgInfo: {
orgs: [],
orgId: '',
curOrg: {}
},
defaultProps: {
children: 'children',
label: 'name'
}
}
},
methods: {
open() {
this.dialogVisible = true
this._loadChooseOrgs()
},
async _loadChooseOrgs() {
try {
const params = {
communityId: getCommunityId()
}
const { data } = await listOrgTree(params)
this.chooseOrgInfo.orgs = data
} catch (error) {
console.error('获取组织树失败:', error)
}
},
handleNodeClick(data) {
this.chooseOrgInfo.curOrg = data
this.chooseOrgInfo.curOrg.orgId = data.id
},
_doChooseOrg() {
this.$emit('switchOrg', this.chooseOrgInfo.curOrg)
this.dialogVisible = false
}
}
}
</script>
<style lang="scss" scoped>
::v-deep .el-dialog__body {
padding: 20px;
max-height: 60vh;
overflow-y: auto;
}
</style>