EditTree.vue
3.46 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<template>
<PageWrapper title="Tree函数操作示例">
<Row :gutter="[16, 16]">
<Col :span="8">
<BasicTree
title="右侧操作按钮/自定义图标"
helpMessage="帮助信息"
:treeData="treeData"
:actionList="actionList"
:renderIcon="createIcon"
/>
</Col>
<Col :span="8">
<BasicTree title="右键菜单" :treeData="treeData" :beforeRightClick="getRightMenuList" />
</Col>
<Col :span="8">
<BasicTree
title="工具栏使用"
toolbar
checkable
search
:treeData="treeData"
:beforeRightClick="getRightMenuList"
/>
</Col>
<Col :span="8">
<BasicTree title="没有fieldNames,插槽有效" helpMessage="正确的示例" :treeData="treeData3">
<template #title="item"> 插槽:{{ item.name }} </template>
</BasicTree>
</Col>
<Col :span="8">
<BasicTree
title="有fieldNames后,插槽失效"
helpMessage="错误的示例, 应该显示插槽的内容才对"
:fieldNames="{ key: 'id', title: 'name' }"
:treeData="treeData2"
>
<template #title="item"> 插槽:{{ item.title }} </template>
</BasicTree>
</Col>
<Col :span="8">
<BasicTree
title="有fieldNames后,actionList失效"
helpMessage="错误的示例,应该在鼠标移上去时,显示新增和删除按钮才对"
:treeData="treeData3"
:actionList="actionList"
:fieldNames="{ key: 'key', title: 'name' }"
/>
</Col>
</Row>
</PageWrapper>
</template>
<script lang="ts">
import { defineComponent, h } from 'vue';
import { Row, Col } from 'ant-design-vue';
import { BasicTree, TreeActionItem, ContextMenuItem } from '/@/components/Tree/index';
import { treeData, treeData2, treeData3 } from './data';
import { PlusOutlined, DeleteOutlined } from '@ant-design/icons-vue';
import { PageWrapper } from '/@/components/Page';
export default defineComponent({
components: { BasicTree, PageWrapper, Row, Col },
setup() {
function handlePlus(node: any) {
console.log(node);
}
function getRightMenuList(node: any): ContextMenuItem[] {
return [
{
label: '新增',
handler: () => {
console.log('点击了新增', node);
},
icon: 'bi:plus',
},
{
label: '删除',
handler: () => {
console.log('点击了删除', node);
},
icon: 'bx:bxs-folder-open',
},
];
}
const actionList: TreeActionItem[] = [
{
// show:()=>boolean;
render: (node) => {
return h(PlusOutlined, {
class: 'ml-2',
onClick: () => {
handlePlus(node);
},
});
},
},
{
render: () => {
return h(DeleteOutlined);
},
},
];
function createIcon({ level }) {
if (level === 1) {
return 'ion:git-compare-outline';
}
if (level === 2) {
return 'ion:home';
}
if (level === 3) {
return 'ion:airplane';
}
return '';
}
return { treeData, treeData2, treeData3, actionList, getRightMenuList, createIcon };
},
});
</script>