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
| <template>
| <a-tree-select
| :dropdownStyle="{ maxHeight: '300px', overflow: 'auto' }"
| allowClear
| :treeData="orgTree"
| :placeholder="placeholder"
| treeDefaultExpandAll
| @change="onchange"
| >
| <span slot="title" slot-scope="{ id }">{{ id }}</span>
| </a-tree-select>
| </template>
| <script>
| import { getOrgTree } from '@/api/modular/system/orgManage'
|
| export default {
| name: 'DepartSelect',
| props: {
| placeholder: {
| type: String
| },
| value: {
| type: String
| }
| },
| data() {
| return {
| orgTree: []
| }
| },
| created() {
| this.getOrgData()
| },
| methods: {
| getOrgData() {
| getOrgTree().then((res) => {
| this.orgTree = res
| })
| },
| /**
| * 选择树机构,初始化机构名称于表单中
| */
| onchange (value) {
| this.$emit('change', value)
| }
| }
| }
| </script>
|
|