-
Notifications
You must be signed in to change notification settings - Fork 169
/
App.vue
271 lines (252 loc) · 6.17 KB
/
App.vue
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
<template>
<div id="app" class="flex-col">
<h1 class="T">
Vue-Giant-Tree
<a
href="https://github.com/tower1229/Vue-Giant-Tree"
target="_blank"
titie="Vue-Giant-Tree"
>
<svg
class="octicon octicon-mark-github v-align-middle"
height="32"
viewBox="0 0 16 16"
version="1.1"
width="16"
aria-hidden="true"
>
<path
fill-rule="evenodd"
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0 0 16 8c0-4.42-3.58-8-8-8z"
/>
</svg>
</a>
</h1>
<div class="wrap flex-1">
<div class="c">
<tree
:setting="setting"
:nodes="nodes"
@onClick="onClick"
@onCheck="onCheck"
@onCreated="handleCreated"
/>
</div>
</div>
<div class="toolbar">
<button class="btn" type="button" @click="update">更新数据</button>
</div>
<footer class="foot">
<p>
© 2019 - 3019 Author
<a href="https://refined-x.com/" target="_blank">前端路上</a>
</p>
</footer>
</div>
</template>
<script>
const bigData = require("@/mock/big-tree.json");
const simpleData = [
{ id: 1, pid: 0, name: "随意勾选 1", open: true },
{ id: 11, pid: 1, name: "随意勾选 1-1", open: true },
{ id: 111, pid: 11, name: "随意勾选 1-1-1" },
{ id: 112, pid: 11, name: "随意勾选 1-1-2" },
{ id: 12, pid: 1, name: "随意勾选 1-2", open: true },
{ id: 121, pid: 12, name: "随意勾选 1-2-1" },
{ id: 122, pid: 12, name: "随意勾选 1-2-2" },
{ id: 2, pid: 0, name: "随意勾选 2", checked: true, open: true },
{ id: 21, pid: 2, name: "随意勾选 2-1" },
{ id: 22, pid: 2, name: "随意勾选 2-2", open: true },
{ id: 221, pid: 22, name: "随意勾选 2-2-1", checked: true },
{ id: 222, pid: 22, name: "随意勾选 2-2-2" },
{ id: 23, pid: 2, name: "随意勾选 2-3" }
];
const dataQueue = [bigData.data, simpleData];
export default {
name: "app",
components: {
tree: resolve => require(["./components/ztree.vue"], resolve)
},
data() {
return {
showIndex: 0,
ztreeObj: null,
setting: {
check: {
enable: true
},
data: {
simpleData: {
enable: true,
pIdKey: "pid"
}
},
view: {
showIcon: false,
addHoverDom: this.addHoverDom,
removeHoverDom: this.removeHoverDom,
}
}
};
},
computed: {
nodes: function() {
return dataQueue[this.showIndex];
}
},
methods: {
addHoverDom(treeid, treeNode) {
const item = document.getElementById(`${treeNode.tId}_a`);
if(item && !item.querySelector('.tree_extra_btn')){
const btn = document.createElement('sapn');
btn.id = `${treeid}_${treeNode.id}_btn`;
btn.classList.add('tree_extra_btn');
btn.innerText = '删除';
btn.addEventListener('click', (e) => {
e.stopPropagation()
this.clickRemove(treeNode)
})
item.appendChild(btn);
}
},
removeHoverDom(treeid, treeNode) {
const item = document.getElementById(`${treeNode.tId}_a`);
if(item){
const btn = item.querySelector('.tree_extra_btn');
if(btn){
item.removeChild(btn)
}
}
},
clickRemove(treeNode) {
console.log('remove', treeNode)
this.ztreeObj && this.ztreeObj.removeNode(treeNode)
},
onClick: function(evt, treeId, treeNode) {
// 点击事件
console.log(evt.type, treeNode);
},
onCheck: function(evt, treeId, treeNode) {
// 选中事件
console.log(evt.type, treeNode);
},
handleCreated: function(ztreeObj) {
this.ztreeObj = ztreeObj;
// onCreated 中操作ztreeObj对象展开第一个节点
ztreeObj.expandNode(ztreeObj.getNodes()[0], true);
},
update: function() {
// 更新示例数据
this.showIndex = this.showIndex === 0 ? 1 : 0;
}
}
};
</script>
<style>
html,body{height: 100%;}
body {
margin: 0;
}
/* 自定义按钮样式 */
.tree_extra_btn{
display: inline-block;
padding: 0 3px;
color: red;
}
/* flex栅格 */
.flex-col {
overflow: hidden;
display: -ms-box;
display: -ms-flexbox;
display: flex;
flex-direction: column;
-ms-flex-direction: column;
}
.flex-row {
overflow: hidden;
display: -ms-box;
display: -ms-flexbox;
display: flex;
}
.flex-1 {
-ms-flex: 1;
flex: 1;
min-width: 0;
}
.flex-2 {
-ms-flex: 2;
flex: 2;
min-width: 0;
}
.flex-3 {
-ms-flex: 3;
flex: 3;
min-width: 0;
}
.flex-4 {
-ms-flex: 4;
flex: 4;
min-width: 0;
}
.align-stretch {
-ms-align-items: stretch;
-ms-flex-align: stretch;
align-items: stretch;
}
.align-center {
-ms-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.justify-center {
-ms-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
#app {
height: 100%;
font-family: "Avenir", Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
}
.wrap{
overflow: hidden;
}
.c {
width: 600px;
height: 100%;
overflow: auto;
margin: auto;
}
.T {
font-size: 34px;
margin: 0 0 30px;
height: 170px;
line-height: 260px;
overflow: hidden;
background:url(./assets/logo.png) center no-repeat;
}
.toolbar {
margin: 20px auto;
}
.toolbar .btn {
padding: 0.5em 1em;
outline: none;
border-radius: 4px;
}
.foot {
margin-top: 30px;
background: #333;
padding: 24px;
overflow: hidden;
color: #999;
font-size: 14px;
text-align: center;
}
.foot a {
color: #fff;
margin: 0 0.5em;
}
</style>