mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
97 lines
4.1 KiB
Vue
97 lines
4.1 KiB
Vue
<template>
|
|
<div>
|
|
<p class="tip">
|
|
树结构排序<br>
|
|
</p>
|
|
|
|
<vxe-table
|
|
height="600"
|
|
:loading="demo1.loading"
|
|
:data="demo1.tableData"
|
|
:tree-config="{transform: true, rowField: 'id', parentField: 'parentId'}">
|
|
<vxe-column field="id" title="ID" width="80"></vxe-column>
|
|
<vxe-column field="name" title="名称" tree-node></vxe-column>
|
|
<vxe-column field="size" title="大小" width="140"></vxe-column>
|
|
<vxe-column field="type" title="类型" width="140"></vxe-column>
|
|
<vxe-column field="date" title="修改日期" width="260" sortable></vxe-column>
|
|
</vxe-table>
|
|
|
|
<p class="demo-code">{{ $t('app.body.button.showCode') }}</p>
|
|
|
|
<pre>
|
|
<pre-code class="xml">{{ demoCodes[0] }}</pre-code>
|
|
<pre-code class="typescript">{{ demoCodes[1] }}</pre-code>
|
|
</pre>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent, reactive } from 'vue'
|
|
|
|
export default defineComponent({
|
|
setup () {
|
|
const demo1 = reactive({
|
|
loading: false,
|
|
tableData: [
|
|
{ id: 1000, parentId: null, name: 'test abc1', type: 'mp3', size: 1024, date: '2020-08-01' },
|
|
{ id: 1005, parentId: 1000, name: 'Test2', type: 'mp4', size: null, date: '2021-04-01' },
|
|
{ id: 24300, parentId: 1000, name: 'Test3', type: 'avi', size: 1024, date: '2020-03-01' },
|
|
{ id: 20045, parentId: 20045, name: 'test abc4', type: 'html', size: 600, date: '2021-04-01' },
|
|
{ id: 10053, parentId: null, name: 'test abc96', type: 'avi', size: null, date: '2021-04-01' },
|
|
{ id: 24330, parentId: 10053, name: 'test abc5', type: 'txt', size: 25, date: '2021-10-01' },
|
|
{ id: 21011, parentId: 24330, name: 'Test6', type: 'pdf', size: 512, date: '2020-01-01' },
|
|
{ id: 22200, parentId: 20045, name: 'Test7', type: 'js', size: 1024, date: '2021-06-01' },
|
|
{ id: 23666, parentId: null, name: 'Test8', type: 'xlsx', size: 2048, date: '2020-11-01' },
|
|
{ id: 24555, parentId: null, name: 'test abc9', type: 'avi', size: 224, date: '2020-10-01' }
|
|
]
|
|
})
|
|
|
|
return {
|
|
demo1,
|
|
demoCodes: [
|
|
`
|
|
<vxe-table
|
|
height="600"
|
|
:loading="demo1.loading"
|
|
:data="demo1.tableData"
|
|
:tree-config="{transform: true, rowField: 'id', parentField: 'parentId'}">
|
|
<vxe-column field="id" title="ID" width="80"></vxe-column>
|
|
<vxe-column field="name" title="名称" tree-node></vxe-column>
|
|
<vxe-column field="size" title="大小" width="140"></vxe-column>
|
|
<vxe-column field="type" title="类型" width="140"></vxe-column>
|
|
<vxe-column field="date" title="修改日期" width="260" sortable></vxe-column>
|
|
</vxe-table>
|
|
`,
|
|
`
|
|
import { defineComponent, reactive } from 'vue'
|
|
|
|
export default defineComponent({
|
|
setup () {
|
|
const demo1 = reactive({
|
|
loading: false,
|
|
tableData: [
|
|
{ id: 1000, parentId: null, name: 'test abc1', type: 'mp3', size: 1024, date: '2020-08-01' },
|
|
{ id: 1005, parentId: 1000, name: 'Test2', type: 'mp4', size: null, date: '2021-04-01' },
|
|
{ id: 24300, parentId: 1000, name: 'Test3', type: 'avi', size: 1024, date: '2020-03-01' },
|
|
{ id: 20045, parentId: 20045, name: 'test abc4', type: 'html', size: 600, date: '2021-04-01' },
|
|
{ id: 10053, parentId: null, name: 'test abc96', type: 'avi', size: null, date: '2021-04-01' },
|
|
{ id: 24330, parentId: 10053, name: 'test abc5', type: 'txt', size: 25, date: '2021-10-01' },
|
|
{ id: 21011, parentId: 24330, name: 'Test6', type: 'pdf', size: 512, date: '2020-01-01' },
|
|
{ id: 22200, parentId: 20045, name: 'Test7', type: 'js', size: 1024, date: '2021-06-01' },
|
|
{ id: 23666, parentId: null, name: 'Test8', type: 'xlsx', size: 2048, date: '2020-11-01' },
|
|
{ id: 24555, parentId: null, name: 'test abc9', type: 'avi', size: 224, date: '2020-10-01' }
|
|
],
|
|
})
|
|
|
|
return {
|
|
demo1
|
|
}
|
|
}
|
|
})
|
|
`
|
|
]
|
|
}
|
|
}
|
|
})
|
|
</script>
|