You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
124 lines
5.4 KiB
124 lines
5.4 KiB
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<!-- style -->
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/vxe-pc-ui@4/lib/style.css">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/vxe-table@4/lib/style.css">
|
|
<!-- vue -->
|
|
<script src="https://cdn.jsdelivr.net/npm/vue@3"></script>
|
|
<!-- table -->
|
|
<script src="https://cdn.jsdelivr.net/npm/xe-utils"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/vxe-pc-ui@4"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/vxe-table@4"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app">
|
|
<div>
|
|
<p>
|
|
<vxe-button @click="getTreeExpansionEvent">获取已展开</vxe-button>
|
|
<vxe-button @click="expandAllEvent">展开所有</vxe-button>
|
|
<vxe-button @click="clearExpandEvent">关闭所有</vxe-button>
|
|
</p>
|
|
|
|
<vxe-table border="inner" :max-height="400" :menu-config="menuConfig" ref="tableRef" :column-config="{resizable: true}"
|
|
:tree-config="{transform: true, rowField: 'id', parentField: 'parentId'}" :data="tableData"
|
|
@toggle-tree-expand="toggleExpandChangeEvent">
|
|
<vxe-column field="name" title="Name" tree-node></vxe-column>
|
|
<vxe-column field="size" title="Size"></vxe-column>
|
|
<vxe-column field="type" title="Type"></vxe-column>
|
|
<vxe-column field="date" title="Date"></vxe-column>
|
|
</vxe-table>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
(function () {
|
|
var App = {
|
|
data() {
|
|
return {
|
|
tableData: [
|
|
{ id: 10000, parentId: null, name: 'Test1', type: 'mp3', size: 1024, date: '2020-08-01' },
|
|
{ id: 10050, parentId: null, name: 'Test2', type: 'mp4', size: 0, date: '2021-04-01' },
|
|
{ id: 24300, parentId: 10050, name: 'Test3', type: 'avi', size: 1024, date: '2020-03-01' },
|
|
{ id: 20045, parentId: 24300, name: 'Test4', type: 'html', size: 600, date: '2021-04-01' },
|
|
{ id: 10053, parentId: 24300, name: 'Test5', type: 'avi', size: 0, date: '2021-04-01' },
|
|
{ id: 24330, parentId: 10053, name: 'Test6', type: 'txt', size: 25, date: '2021-10-01' },
|
|
{ id: 21011, parentId: 10053, name: 'Test7', type: 'pdf', size: 512, date: '2020-01-01' },
|
|
{ id: 22200, parentId: 10053, name: 'Test8', type: 'js', size: 1024, date: '2021-06-01' },
|
|
{ id: 23666, parentId: null, name: 'Test9', type: 'xlsx', size: 2048, date: '2020-11-01' },
|
|
{ id: 23677, parentId: 23666, name: 'Test10', type: 'js', size: 1024, date: '2021-06-01' },
|
|
{ id: 23671, parentId: 23677, name: 'Test11', type: 'js', size: 1024, date: '2021-06-01' },
|
|
{ id: 23672, parentId: 23677, name: 'Test12', type: 'js', size: 1024, date: '2021-06-01' },
|
|
{ id: 23688, parentId: 23666, name: 'Test13', type: 'js', size: 1024, date: '2021-06-01' },
|
|
{ id: 23681, parentId: 23688, name: 'Test14', type: 'js', size: 1024, date: '2021-06-01' },
|
|
{ id: 23682, parentId: 23688, name: 'Test15', type: 'js', size: 1024, date: '2021-06-01' },
|
|
{ id: 24555, parentId: null, name: 'Test16', type: 'avi', size: 224, date: '2020-10-01' },
|
|
{ id: 24566, parentId: 24555, name: 'Test17', type: 'js', size: 1024, date: '2021-06-01' },
|
|
{ id: 24577, parentId: 24555, name: 'Test18', type: 'js', size: 1024, date: '2021-06-01' }
|
|
],
|
|
menuConfig: {
|
|
header: {
|
|
options: [
|
|
[
|
|
{ code: 'myExportMenu', name: '导出数据' }
|
|
]
|
|
]
|
|
},
|
|
body: {
|
|
options: [
|
|
[
|
|
{ code: 'myExportMenu', name: '导出数据' },
|
|
{ code: 'myPrintMenu', name: '打印' },
|
|
{ code: 'myLinkMenu', name: '打开官网' }
|
|
]
|
|
]
|
|
},
|
|
footer: {
|
|
options: [
|
|
[
|
|
{ code: 'myLinkMenu', name: '打开官网' }
|
|
]
|
|
]
|
|
}
|
|
}
|
|
}
|
|
},
|
|
methods: {
|
|
toggleExpandChangeEvent(params) {
|
|
const $table = this.$refs.tableRef
|
|
if ($table) {
|
|
const { row, expanded } = params
|
|
console.log('节点展开事件', expanded, '获取父节点:', $table.getParentRow(row))
|
|
}
|
|
},
|
|
getTreeExpansionEvent() {
|
|
const $table = this.$refs.tableRef
|
|
if ($table) {
|
|
const treeExpandRecords = $table.getTreeExpandRecords()
|
|
VxeUI.modal.alert(treeExpandRecords.length)
|
|
}
|
|
},
|
|
expandAllEvent() {
|
|
const $table = this.$refs.tableRef
|
|
if ($table) {
|
|
$table.setAllTreeExpand(true)
|
|
}
|
|
},
|
|
clearExpandEvent() {
|
|
const $table = this.$refs.tableRef
|
|
if ($table) {
|
|
$table.clearTreeExpand()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
Vue.createApp(App).use(VxeUI).use(VXETable).mount('#app')
|
|
})()
|
|
</script>
|
|
</body>
|
|
|
|
</html> |