在 vxe-table 3.10+ 中开启虚拟滚动同时使用自适应行高
说明
是否固定行高:show-overflow 启用后将固定所有行的高度(性能最优),不加则自适应行高
开启虚拟滚动开关:scroll-y= {
enabled: true, // 是否启用,支持全局开启
gt: 0, // 当大与指导数量时启用
mode: 'wheel' // 优化模式,解决滚动白屏问题
}
代码
<template>
<div>
<vxe-grid v-bind="gridOptions"></vxe-grid>
</div>
</template>
<script>
import { VxeUI } from 'vxe-table'
export default {
data () {
const imgUrlCellRender = {
name: 'VxeImage',
props: {
width: 36,
height: 36
}
}
const gridOptions = {
border: true,
loading: false,
height: 800,
columnConfig: {
resizable: true
},
scrollY: {
enabled: true,
gt: 0
},
columns: [
{ type: 'checkbox', width: 60 },
{ title: '列0', field: 'col0', width: 100 },
{ title: '列1', field: 'imgUrl', width: 80, cellRender: imgUrlCellRender },
{ title: '列2', field: 'col2', width: 90 },
{ title: '列3', field: 'col3', width: 200 },
{ title: '列4', field: 'col4', width: 140 },
{ title: '列5', field: 'col5', width: 300 },
{ title: '列6', field: 'col6', width: 160 },
{ title: '列7', field: 'col7', width: 120 },
{ title: '列8', field: 'col8' }
],
data: []
}
return {
gridOptions,
imgUrlCellRender
}
},
methods: {
// 模拟行数据
loadData (rowSize) {
this.gridOptions.loading = true
setTimeout(() => {
const dataList = []
for (let i = 0; i < rowSize; i++) {
const item = {
id: 10000 + i,
imgUrl: i % 3 === 0 ? 'https://vxeui.com/resource/img/546.gif' : 'https://vxeui.com/resource/img/673.gif'
}
for (let j = 0; j < 10; j++) {
if (i % 8 === 0) {
item[`col${j}`] = `值_${i}_${j} 内容8内容8内容8内容8`
} else if (i % 7 === 0) {
item[`col${j}`] = `值_${i}_${j} 内容7内容7`
} else if (i % 6 === 0) {
item[`col${j}`] = `值_${i}_${j} 内容6内容6内容6内容6内容6内容6内容6内容6`
} else if (i % 5 === 0) {
item[`col${j}`] = `值_${i}_${j} 内容5内容5内容5内容5内容5`
} else if (i % 4 === 0) {
item[`col${j}`] = `值_${i}_${j} 内容4内容4内容4内容4内容4内容4内容4内容4内容4内容4内容4内容4`
} else {
item[`col${j}`] = `值_${i}_${j}`
}
}
dataList.push(item)
}
const startTime = Date.now()
this.gridOptions.data = dataList
this.gridOptions.loading = false
this.$nextTick(() => {
VxeUI.modal.message({
content: `加载时间 ${Date.now() - startTime} 毫秒`,
status: 'success'
})
})
}, 350)
}
},
created () {
this.loadData(200)
}
}
</script>
单元格选取的版本使用也是一样的
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。