mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
186 lines
5.1 KiB
Vue
186 lines
5.1 KiB
Vue
<template>
|
||
<div>
|
||
<p class="tip">
|
||
<grid-api-link name="vxe-grid"/> 动态化表格,解决动态数据一切需求(动态列、动态数据、动态个性化...)<br>
|
||
渲染性能对比:<grid-api-link name="vxe-grid"/>(性能最优,不需要为每一列创建实例) > <table-api-link name="vxe-table"/>(性能略差,需要为每一列创建实例)<br>
|
||
通过 <grid-api-link prop="columns"/> 动态配置列信息,这非常适用于动态渲染的场景,完全使用数据进行配置
|
||
</p>
|
||
|
||
<vxe-grid
|
||
border
|
||
resizable
|
||
height="300"
|
||
:columns="tableColumn"
|
||
:data.sync="tableData"></vxe-grid>
|
||
|
||
<p class="demo-code">{{ $t('app.body.button.showCode') }}</p>
|
||
|
||
<pre>
|
||
<code class="xml">{{ demoCodes[0] }}</code>
|
||
<code class="javascript">{{ demoCodes[1] }}</code>
|
||
</pre>
|
||
|
||
<p class="tip">分组表头、底部合计</p>
|
||
|
||
<vxe-grid
|
||
border
|
||
stripe
|
||
resizable
|
||
show-footer
|
||
height="500"
|
||
:footer-method="footerMethod"
|
||
:columns="tableColumn2"
|
||
:data.sync="tableData"></vxe-grid>
|
||
|
||
<p class="demo-code">{{ $t('app.body.button.showCode') }}</p>
|
||
|
||
<pre>
|
||
<code class="xml">{{ demoCodes[2] }}</code>
|
||
<code class="javascript">{{ demoCodes[3] }}</code>
|
||
</pre>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import XEUtils from 'xe-utils'
|
||
import hljs from 'highlight.js'
|
||
|
||
export default {
|
||
data () {
|
||
return {
|
||
tableColumn: [
|
||
{ type: 'index', width: 50 },
|
||
{ field: 'name', title: 'app.body.label.name' },
|
||
{ field: 'sex', title: 'app.body.label.sex', showHeaderOverflow: true },
|
||
{ field: 'address', title: 'Address', showOverflow: true }
|
||
],
|
||
tableColumn2: [
|
||
{ type: 'index', width: 50 },
|
||
{
|
||
title: '基本信息',
|
||
children: [
|
||
{ field: 'name', title: 'Name' },
|
||
{
|
||
title: '其他信息',
|
||
children: [
|
||
{ field: 'rate', title: 'Rate' },
|
||
{ field: 'age', title: 'Age' }
|
||
]
|
||
},
|
||
{ field: 'sex', title: 'Sex' }
|
||
]
|
||
},
|
||
{ field: 'address', title: 'Address', showOverflow: true }
|
||
],
|
||
tableData: [],
|
||
demoCodes: [
|
||
`
|
||
<vxe-grid
|
||
border
|
||
resizable
|
||
height="300"
|
||
:columns="tableColumn"
|
||
:data.sync="tableData"></vxe-grid>
|
||
`,
|
||
`
|
||
export default {
|
||
data () {
|
||
return {
|
||
tableColumn: [
|
||
{ type: 'index', width: 50 },
|
||
{ field: 'name', title: 'app.body.label.name' },
|
||
{ field: 'sex', title: 'app.body.label.sex', showHeaderOverflow: true },
|
||
{ field: 'address', title: 'Address', showOverflow: true }
|
||
]
|
||
}
|
||
},
|
||
created () {
|
||
this.tableData = window.MOCK_DATA_LIST.slice(0, 100)
|
||
}
|
||
}
|
||
`,
|
||
`
|
||
<vxe-grid
|
||
border
|
||
stripe
|
||
resizable
|
||
show-footer
|
||
height="500"
|
||
:footer-method="footerMethod"
|
||
:columns="tableColumn2"
|
||
:data.sync="tableData"></vxe-grid>
|
||
`,
|
||
`
|
||
export default {
|
||
data () {
|
||
return {
|
||
tableColumn2: [
|
||
{ type: 'index', width: 50 },
|
||
{
|
||
title: '基本信息',
|
||
children: [
|
||
{ field: 'name', title: 'Name' },
|
||
{
|
||
title: '其他信息',
|
||
children: [
|
||
{ field: 'rate', title: 'Rate' },
|
||
{ field: 'age', title: 'Age' }
|
||
]
|
||
},
|
||
{ field: 'sex', title: 'Sex' }
|
||
]
|
||
},
|
||
{ field: 'address', title: 'Address', showOverflow: true }
|
||
]
|
||
}
|
||
},
|
||
created () {
|
||
this.tableData = window.MOCK_DATA_LIST.slice(0, 100)
|
||
},
|
||
methods: {
|
||
footerMethod ({ columns, data }) {
|
||
return [
|
||
columns.map((column, columnIndex) => {
|
||
if (columnIndex === 0) {
|
||
return '和值'
|
||
}
|
||
if (['age', 'rate'].includes(column.property)) {
|
||
return XEUtils.sum(data, column.property)
|
||
}
|
||
return null
|
||
})
|
||
]
|
||
}
|
||
}
|
||
}
|
||
`
|
||
]
|
||
}
|
||
},
|
||
created () {
|
||
let list = window.MOCK_DATA_LIST.slice(0, 100)
|
||
this.tableData = list
|
||
},
|
||
mounted () {
|
||
Array.from(this.$el.querySelectorAll('pre code')).forEach((block) => {
|
||
hljs.highlightBlock(block)
|
||
})
|
||
},
|
||
methods: {
|
||
footerMethod ({ columns, data }) {
|
||
return [
|
||
columns.map((column, columnIndex) => {
|
||
if (columnIndex === 0) {
|
||
return '和值'
|
||
}
|
||
if (['age', 'rate'].includes(column.property)) {
|
||
return XEUtils.sum(data, column.property)
|
||
}
|
||
return null
|
||
})
|
||
]
|
||
}
|
||
}
|
||
}
|
||
</script>
|