mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
95 lines
2.6 KiB
Vue
95 lines
2.6 KiB
Vue
<template>
|
|
<div>
|
|
<p class="tip">当一个表格高度需要自适应的时候可以通过 <virtual-tree-api-link prop="max-height"/> 设置为最大高度</p>
|
|
|
|
<vxe-virtual-tree
|
|
border
|
|
resizable
|
|
row-key
|
|
export-config
|
|
ref="xVTree"
|
|
max-height="400"
|
|
:toolbar="{export: true, zoom: true}"
|
|
:tree-config="{children: 'children'}"
|
|
:columns="tableColumn"
|
|
:data="tableData">
|
|
<template v-slot:buttons>
|
|
<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: [
|
|
{ field: 'name', title: 'app.body.label.name', treeNode: true },
|
|
{ field: 'size', title: 'Size' },
|
|
{ field: 'type', title: 'Type' },
|
|
{ field: 'date', title: 'Date' }
|
|
],
|
|
demoCodes: [
|
|
`
|
|
<vxe-virtual-tree
|
|
border
|
|
resizable
|
|
row-key
|
|
export-config
|
|
ref="xVTree"
|
|
max-height="400"
|
|
:toolbar="{export: true, zoom: true}"
|
|
:tree-config="{children: 'children'}"
|
|
:columns="tableColumn"
|
|
:data="tableData">
|
|
<template v-slot:buttons>
|
|
<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: [
|
|
{ field: 'name', title: 'app.body.label.name', treeNode: true },
|
|
{ field: 'size', title: 'Size' },
|
|
{ field: 'type', title: 'Type' },
|
|
{ field: 'date', title: 'Date' }
|
|
]
|
|
}
|
|
},
|
|
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>
|