iview/examples/routers/tree.vue

199 lines
7.6 KiB
Vue
Raw Normal View History

2017-10-25 17:41:37 +08:00
<!--<template>-->
<!--<div>-->
<!--<Tree :data="baseData" :load-data="loadData" multiple :render="renderFunc"></Tree>-->
<!--<Button @click="handleAdd">add</Button>-->
<!--<Button @click="handleUpdate">update</Button>-->
<!--</div>-->
<!--</template>-->
<!--<script>-->
<!--export default {-->
<!--data () {-->
<!--return {-->
<!--baseData: [-->
<!--{-->
<!--expand: true,-->
<!--title: 'parent 1',-->
<!--children: [-->
<!--{-->
<!--title: 'parent 1-0',-->
<!--expand: false,-->
<!--children: [],-->
<!--loading: false-->
<!--},-->
<!--{-->
<!--title: 'parent 1-1',-->
<!--expand: true,-->
<!--checked: true,-->
<!--children: [-->
<!--{-->
<!--title: 'leaf',-->
<!--render: (h, { node }) => {-->
<!--return h('Button', {-->
<!--props: {-->
<!--type: 'primary',-->
<!--size: 'small'-->
<!--},-->
<!--on: {-->
<!--click: ({target}) => {-->
<!--this.logger(target.textContent);-->
<!--}-->
<!--}-->
<!--}, node.title + '000');-->
<!--}-->
<!--}-->
<!--]-->
<!--}-->
<!--]-->
<!--}-->
<!--]-->
<!--};-->
<!--},-->
<!--methods: {-->
<!--handleAdd () {-->
<!--this.baseData.push(-->
<!--{-->
<!--title: 'test name',-->
<!--checked: true-->
<!--}-->
<!--);-->
<!--},-->
<!--handleUpdate () {-->
<!--const child = this.baseData[0].children[0].children[1];-->
<!--// console.log(JSON.stringify(this.baseData), '\n', JSON.stringify(child));-->
<!--if (!child) return this.$Message.error('Node is async and is not loaded yet');-->
<!--else this.$set(child, 'checked', true);-->
<!--},-->
<!--logger (txt) {-->
<!--console.log(txt);-->
<!--},-->
<!--loadData (item, callback) {-->
<!--setTimeout(() => {-->
<!--callback([-->
<!--{-->
<!--title: 'children-1',-->
<!--// loading: false,-->
<!--children: []-->
<!--},-->
<!--{-->
<!--title: 'children-2',-->
<!--// loading: false,-->
<!--children: []-->
<!--}-->
<!--]);-->
<!--}, 2000);-->
<!--},-->
<!--renderFunc (h, { node }) {-->
<!--return h('Button', {-->
<!--props: {-->
<!--type: 'ghost'-->
<!--}-->
<!--}, node.title)-->
<!--}-->
<!--}-->
<!--};-->
<!--</script>-->
<template>
2017-10-25 17:41:37 +08:00
<div style="width: 400px;">
<Tree :data="data4" :render="renderContent"></Tree>
2017-10-25 16:45:42 +08:00
</div>
</template>
<script>
export default {
2017-03-03 10:35:38 +08:00
data () {
2017-02-07 11:34:00 +08:00
return {
2017-10-25 17:41:37 +08:00
data4: [
2017-03-24 20:50:13 +08:00
{
2017-10-25 16:45:42 +08:00
title: 'parent 1',
2017-10-25 17:41:37 +08:00
expand: true,
2017-04-27 13:56:58 +08:00
children: [
{
2017-10-25 17:41:37 +08:00
title: 'parent 1-1',
expand: true,
children: [
{
title: 'leaf 1-1-1',
expand: true
},
{
title: 'leaf 1-1-2',
expand: true
}
]
2017-04-27 13:56:58 +08:00
},
{
2017-10-25 17:41:37 +08:00
title: 'parent 1-2',
expand: true,
2017-10-23 11:55:35 +08:00
children: [
{
2017-10-25 17:41:37 +08:00
title: 'leaf 1-2-1',
expand: true
},
{
title: 'leaf 1-2-1',
expand: true
2017-10-23 11:55:35 +08:00
}
]
2017-04-27 13:56:58 +08:00
}
]
2017-03-27 14:28:42 +08:00
}
2017-10-25 17:41:37 +08:00
],
buttonProps: {
type: 'ghost',
size: 'small',
}
}
2017-10-25 16:45:42 +08:00
},
methods: {
2017-10-25 19:12:14 +08:00
renderContent (h, { data, node }) {
2017-10-25 17:41:37 +08:00
return h('span', {
style: {
display: 'inline-block',
width: '100%'
2017-10-25 16:45:42 +08:00
}
2017-10-25 17:41:37 +08:00
}, [
2017-10-25 19:12:14 +08:00
h('span', data.title),
2017-10-25 17:41:37 +08:00
h('span', {
style: {
display: 'inline-block',
float: 'right',
marginRight: '32px'
2017-10-25 16:45:42 +08:00
}
2017-10-25 17:41:37 +08:00
}, [
h('Button', {
props: Object.assign({}, this.buttonProps, {
icon: 'ios-plus-empty'
}),
style: {
marginRight: '8px'
},
on: {
2017-10-25 19:12:14 +08:00
click: () => { this.append(node, data) }
2017-10-25 17:41:37 +08:00
}
}),
h('Button', {
props: Object.assign({}, this.buttonProps, {
icon: 'ios-minus-empty'
}),
on: {
2017-10-25 19:12:14 +08:00
click: () => { this.remove(node, data) }
2017-10-25 17:41:37 +08:00
}
})
])
]);
2017-10-25 16:45:42 +08:00
},
2017-10-25 19:12:14 +08:00
append (node, data) {
this.$set(data, 'children', [{
2017-10-25 17:41:37 +08:00
title: 'appended node',
expand: true
}]);
},
2017-10-25 19:12:14 +08:00
remove (node, data) {
2017-10-25 17:41:37 +08:00
const parent = node.parent;
console.log(node);
2017-10-25 19:12:14 +08:00
console.log(data);
2017-10-23 11:55:35 +08:00
}
2017-02-07 11:34:00 +08:00
}
2017-10-25 17:41:37 +08:00
}
</script>