Tree树型选择框
... 2021-8-5 About 5 min
# Tree树型选择框
# 基础用法
<avue-form :option="option"></avue-form>
<script>
export default {
data() {
return {
option:{
column: [{
label: '树型选择框',
prop: 'tree',
type: 'tree',
dicData:[{
label:'字典1',
value:0,
children:[{
label:'字典3',
value:2
}]
},{
label:'字典2',
value:1
}]
}]
}
};
}
}
</script>
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
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
Expand Copy Copy
# 默认值
value
属性可以提供一个初始化的默认值
<avue-form :option="option"></avue-form>
<script>
export default{
data() {
return {
option: {
column: [
{
label:'树型选择框',
prop:'tree',
type:'tree',
dicData:[{
label:'字典1',
value:0,
children:[{
label:'字典3',
value:2
}]
},{
label:'字典2',
value:1
}],
value:0
}
]
}
}
}
}
</script>
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
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
Expand Copy Copy
# 禁用状态
通过disabled
属性指定是否禁用
<avue-form :option="option"></avue-form>
<script>
export default{
data() {
return {
option: {
column: [
{
label:'树型选择框',
prop:'tree',
type:'tree',
dicData:[{
label:'字典1',
value:0,
children:[{
label:'字典3',
value:2
}]
},{
label:'字典2',
value:1
}],
disabled:true
}
]
}
}
}
}
</script>
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
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
Expand Copy Copy
# 禁用选项
返回的字典中数据配置disabled
属性指定是否禁用
<avue-form :option="option"></avue-form>
<script>
export default{
data() {
return {
option: {
column: [
{
label:'树型选择框',
prop:'tree',
type:'tree',
dicData:[{
label:'字典1',
value:0,
disabled:true,
children:[{
label:'字典3',
value:2
}]
},{
label:'字典2',
value:1
}]
}
]
}
}
}
}
</script>
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
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
Expand Copy Copy
# 可清空
使用clearable
属性即可得到一个可清空的输入框,默认为true
<avue-form :option="option"></avue-form>
<script>
export default{
data() {
return {
option: {
column: [
{
label:'树型选择框',
prop:'tree',
type:'tree',
clearable:false,
dicData:[{
label:'字典1',
value:0,
children:[{
label:'字典3',
value:2
}]
},{
label:'字典2',
value:1
}]
}
]
}
}
}
}
</script>
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
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
Expand Copy Copy
# 辅助语
配置下拉数据中desc
字段
<avue-form :option="option"></avue-form>
<script>
export default {
data() {
return {
option: {
column: [{
label:'树型选择框',
prop:'tree',
type:'tree',
dicData:[{
label:'字典1',
value:0,
desc:'字典描述',
children:[{
label:'字典3',
value:2
}]
},{
label:'字典2',
value:1
}]
}]
}
}
}
}
</script>
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
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
Expand Copy Copy
# 下拉框样式
.popperClass .el-tree-node__content{
background-color: rgba(0,0,0,.2);
}
1
2
3
2
3
popperClass
属性配置样式的class
名字
<avue-form :option="option"></avue-form>
<script>
export default {
data() {
return {
option:{
column: [{
label: '树型选择框',
prop: 'tree',
type: 'tree',
popperClass:'popperClass',
dicData:[{
label:'字典1',
value:0,
children:[{
label:'字典3',
value:2
}]
},{
label:'字典2',
value:1
}]
}]
}
};
}
}
</script>
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
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
Expand Copy Copy
# 字典属性
指定标签文本和值,默认为label和value
配置props
属性来指定标签文本和值,默认为label
和value
<avue-form :option="option"></avue-form>
<script>
export default {
data(){
return {
option:{
column: [{
label: '树形下拉框',
prop: 'tree',
type: 'tree',
props:{
label:'name',
value:'code',
children:'list'
},
dicData:[{
name:'字典1',
code:0,
list:[{
label:'字典3',
code:2
}]
},{
name:'字典2',
value:1
}]
}]
}
}
}
}
</script>
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
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
Expand Copy Copy
# 网络字典
更多用法参考表单数据字典
配置dicUrl
指定后台接口的地址
<avue-form :option="option"></avue-form>
<script>
export default {
data(){
return {
option:{
column: [{
label: '树形下拉框',
prop: 'tree',
type: 'tree',
props: {
label: 'name',
value: 'code'
},
dicUrl: 'https://cli.avuejs.com/api/area/getProvince'
}]
}
}
}
}
</script>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Expand Copy Copy
# 基础多选
设置multiple
属性即可启用多选,leafOnly
属性是否不包含父类,此时值为当前选中值所组成的数组。默认情况下选中值会以 Tag 的形式展现,你也可以设置tags
属性将它们合并为一段文字。
<avue-form v-model="form" :option="option"></avue-form>
<script>
const dicData=[{
label:'字典1',
value:0,
children:[{
label:'字典3',
value:2
}]
},{
label:'字典2',
value:1
}]
export default {
data() {
return {
form:{
tree1:[1,2],
tree2:[1,2]
},
option:{
column: [{
label: '多选',
prop: 'tree1',
type: 'tree',
multiple:true,
dicData:dicData
},{
label: '多选',
prop: 'tree2',
type: 'tree',
leafOnly:true,
multiple:true,
tags:true,
dicData:dicData
}]
}
};
}
}
</script>
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
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
Expand Copy Copy
# 选择任意级别
当属性checkStrictly
为true
时,leafOnly
必须设置为1false
,任何节点都可以被选择
<avue-form :option="option"></avue-form>
<script>
export default {
data () {
return {
option: {
column: [{
label: '树型选择框',
prop: 'tree',
type: 'tree',
checkStrictly: true,
leafOnly:false,
dicData: [{
label: '字典1',
value: 0,
children: [{
label: '字典3',
value: 2
}]
}, {
label: '字典2',
value: 1
}]
}, {
label: '树型选择框1',
prop: 'tree1',
type: 'tree',
multiple: true,
checkStrictly: true,
dicData: [{
label: '字典1',
value: 0,
children: [{
label: '字典3',
value: 2
}]
}, {
label: '字典2',
value: 1
}]
}]
}
};
}
}
</script>
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
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
Expand Copy Copy
# 基础过滤
数据过滤filter
属性默认为true
,filterText
为过滤框的文字
<avue-form :option="option"></avue-form>
<script>
export default {
data() {
return {
option:{
column: [{
label: '多选',
prop: 'tree',
type: 'tree',
filterText:'自定义搜索文字',
dicData:[{
label:'字典1',
value:0,
children:[{
label:'字典3',
value:2
}]
},{
label:'字典2',
value:1
}]
},{
label: '父类不可选',
prop: 'tree',
type: 'tree',
parent:false,
dicData:[{
label:'字典1',
value:0,
children:[{
label:'字典3',
value:2,
children:[{
label:'字典4',
value:3
}]
}]
},{
label:'字典2',
value:1
}]
}]
}
};
}
}
</script>
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
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
Expand Copy Copy
# 节点事件
<avue-form :option="option" ></avue-form>
<script>
export default {
data() {
return {
option:{
column: [{
label: '多选',
prop: 'tree',
type: 'tree',
multiple:true,
nodeClick:(data, node, nodeComp)=>{
this.$message.success(JSON.stringify(data))
},
checked:(checkedNodes, checkedKeys, halfCheckedNodes, halfCheckedKeys)=>{
this.$message.success(JSON.stringify(checkedKeys))
},
dicData:[{
label:'字典1',
value:0,
children:[{
label:'字典3',
value:2
}]
},{
label:'字典2',
value:1
}]
}]
}
};
}
}
</script>
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
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
Expand Copy Copy
# 自定义模板
配置prop
名称加Type
卡槽开启即可自定义下拉框的内容,typeformat
配置回显的内容,但是你提交的值还是value
并不会改变
<avue-form :option="option" v-model="form">
<template slot="codeType" slot-scope="{item,value,label}">
<span>{{ item }}</span>
</template>
<template slot="codesType" slot-scope="{item,value,label}">
<span>{{ item }}</span>
</template>
</avue-form>
<script>
var baseUrl = 'https://cli.avuejs.com/api/area'
export default {
data() {
return {
form: {},
option: {
column: [{
label: '单选',
prop: 'code',
type: 'tree',
props: {
label: 'name',
value: 'code'
},
dicUrl: `${baseUrl}/getProvince`,
typeformat(item, label, value) {
return `值:${item[label]}-名:${item[value]}`
},
rules: [
{
required: true,
message: '请选择省份',
trigger: 'blur'
}
]
}, {
label: '多选',
prop: 'codes',
type: 'tree',
props: {
label: 'name',
value: 'code'
},
multiple: true,
dicUrl: `${baseUrl}/getProvince`,
typeformat(item, label, value) {
return `值:${item[label]}-名:${item[value]}`
},
rules: [
{
required: true,
message: '请选择省份',
trigger: 'blur'
}
]
}
]
}
}
}
}
</script>
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
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
Expand Copy Copy
# 懒加载
<avue-form :option="option" ></avue-form>
<script>
let baseUrl = 'https://cli.avuejs.com/api/area'
export default {
data() {
return {
option:{
column: [{
label:'懒加载',
prop:'id',
type:'tree',
dicUrl:`${baseUrl}/getProvince?id={{key}}`,
props: {
label: 'name',
value: 'code'
},
lazy:true,
treeLoad: (node, resolve)=> {
let stop_level = 2;
let level = node.level;
let data = node.data || {}
let code = data.code;
let list = [];
let callback = () => {
resolve((list || []).map(ele => {
return Object.assign(ele, {
leaf: level >= stop_level
})
}));
}
if (level == 0) {
axios.get(`${baseUrl}/getProvince`).then(res => {
list = res.data;
callback()
})
}
if (level == 1) {
axios.get(`${baseUrl}/getCity/${code}`).then(res => {
list = res.data;
callback()
})
} else if (level == 2) {
axios.get(`${baseUrl}/getArea/${code}`).then(res => {
list = res.data;
callback()
})
}else{
list=[]
callback()
}
}
}]
}
};
}
}
</script>
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
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
Expand Copy Copy