Files
vxe-table/examples/views/table/virtual-tree/Fixed.vue
xuliangzhan 1db8142744 更新文档
2020-01-13 21:05:49 +08:00

101 lines
3.1 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template>
<div>
<p class="tip">树表格固定列</p>
<vxe-virtual-tree
border
resizable
row-key
toolbar
ref="xVTree"
row-id="id"
:tree-config="{children: 'children'}"
:checkbox-config="{labelField: 'id'}"
:columns="tableColumn"
:data="tableData">
<template v-slot:buttons>
<vxe-button @click="$refs.xTree.toggleTreeExpansion(tableData[0], true)">切换第一个</vxe-button>
<vxe-button @click="$refs.xTree.setTreeExpansion(tableData[2], true)">展开第三个</vxe-button>
<vxe-button @click="$refs.xTree.setAllTreeExpansion(true)">展开所有</vxe-button>
<vxe-button @click="$refs.xTree.clearTreeExpand()">关闭所有</vxe-button>
</template>
</vxe-virtual-tree>
<p class="demo-code">{{ $t('app.body.button.showCode') }}</p>
<pre>
<code class="xml">{{ demoCodes[0] }}</code>
<code class="javascript">{{ demoCodes[1] }}</code>
</pre>
</div>
</template>
<script>
import XEUtils from 'xe-utils'
import hljs from 'highlight.js'
export default {
data () {
return {
tableData: [],
tableColumn: [
{ type: 'checkbox', title: 'ID', fixed: 'left', width: 280, treeNode: true },
{ field: 'name', title: 'Name', width: 300 },
{ field: 'size', title: 'Size', width: 300 },
{ field: 'type', title: 'Type', width: 300 },
{ field: 'date', title: 'Date', width: 300 }
],
demoCodes: [
`
<vxe-virtual-tree
border
resizable
row-key
toolbar
ref="xVTree"
row-id="id"
:tree-config="{children: 'children'}"
:checkbox-config="{labelField: 'id'}"
:columns="tableColumn"
:data="tableData">
<template v-slot:buttons>
<vxe-button @click="$refs.xTree.toggleTreeExpansion(tableData[0], true)">切换第一个</vxe-button>
<vxe-button @click="$refs.xTree.setTreeExpansion(tableData[2], true)">展开第三个</vxe-button>
<vxe-button @click="$refs.xTree.setAllTreeExpansion(true)">展开所有</vxe-button>
<vxe-button @click="$refs.xTree.clearTreeExpand()">关闭所有</vxe-button>
</template>
</vxe-virtual-tree>
`,
`
export default {
data () {
return {
tableData: [],
tableColumn: [
{ type: 'checkbox', title: 'ID', fixed: 'left', width: 280, treeNode: true },
{ field: 'name', title: 'Name', width: 300 },
{ field: 'size', title: 'Size', width: 300 },
{ field: 'type', title: 'Type', width: 300 },
{ field: 'date', title: 'Date', width: 300 }
]
}
},
created () {
this.tableData = window.MOCK_TREE_DATA_LIST.slice(0)
}
}
`
]
}
},
created () {
this.tableData = XEUtils.clone(window.MOCK_TREE_DATA_LIST, true)
},
mounted () {
Array.from(this.$el.querySelectorAll('pre code')).forEach((block) => {
hljs.highlightBlock(block)
})
}
}
</script>