Files
vxe-table/examples/views/table/scroll/ScrollFullCols.vue
xuliangzhan 74c5426583 优化重构
2020-04-03 17:16:38 +08:00

174 lines
6.6 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template>
<div>
<p class="tip">
虚拟滚动渲染左右固定列<span class="orange">最大可以支撑 5w 30w </span><br>
大数据不建议使用双向绑定的 <table-api-link name="data"/> 属性vue 监听会大数据会短暂的卡顿建议使用 <table-api-link prop="loadData"/>/<table-api-link prop="loadColumn"/> 函数<br>
对于多选 type=<table-column-api-link prop="checkbox"/> 当数据量海量时应该绑定 <table-api-link prop="checkField"/> 属性渲染速度更快<br>
<span class="red">(如果要启用横向虚拟滚动不支持分组表头如果需要支持动态列宽的话那么需要处理好 <table-api-link name="rSize"/> 参数内置的列宽算法是无法支持某些场景的某些场景下必须手动设置)</span>
</p>
<vxe-grid
border
show-overflow
show-header-overflow
highlight-hover-row
highlight-current-row
ref="xGrid"
height="600"
:loading="loading"
:toolbar="{slots: {buttons: 'toolbar_buttons'}}"
:checkbox-config="{checkField: 'checked', labelField: 'nickname'}">
<template v-slot:toolbar_buttons>
<vxe-button @click="loadColumnAndData(10000, 10000)">1w列1w条</vxe-button>
<vxe-button @click="loadColumnAndData(10000, 50000)">1w列5w条</vxe-button>
<vxe-button @click="loadColumnAndData(10000, 100000)">1w列10w条</vxe-button>
<vxe-button @click="loadColumnAndData(10000, 100000)">1w列20w条</vxe-button>
<vxe-button @click="loadColumnAndData(20000, 50000)">2w列5w条</vxe-button>
<vxe-button @click="loadColumnAndData(20000, 100000)">2w列10w条</vxe-button>
<vxe-button @click="loadColumnAndData(20000, 200000)">2w列20w条</vxe-button>
<vxe-button @click="$refs.xGrid.setAllCheckboxRow(true)">所有选中</vxe-button>
<vxe-button @click="$refs.xGrid.clearCheckboxRow()">清除选中</vxe-button>
<vxe-button @click="getSelectEvent">获取选中</vxe-button>
</template>
</vxe-grid>
<pre>
<code>
| Arrow Up | 匀速向上滚动数据 |
| Arrow Down | 匀速向下滚动数据 |
| Arrow Left | 匀速向左滚动数据 |
| Arrow Right | 匀速向右滚动数据 |
| Page Up | 向上翻页滚动 |
| Page Down | 向下翻页滚动 |
| Spacebar | 翻页滚动 |
| Home | 滚动到顶部 |
| End | 滚动到底部 |
</code>
</pre>
<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 XEAjax from 'xe-ajax'
import hljs from 'highlight.js'
export default {
data () {
return {
loading: false,
demoCodes: [
`
<vxe-grid
border
show-overflow
show-header-overflow
highlight-hover-row
highlight-current-row
ref="xGrid"
height="600"
:loading="loading"
:toolbar="{slots: {buttons: 'toolbar_buttons'}}"
:checkbox-config="{checkField: 'checked', labelField: 'nickname'}">
<template v-slot:toolbar_buttons>
<vxe-button @click="loadColumnAndData(10000, 10000)">1w列1w条</vxe-button>
<vxe-button @click="loadColumnAndData(10000, 50000)">1w列5w条</vxe-button>
<vxe-button @click="loadColumnAndData(10000, 100000)">1w列10w条</vxe-button>
<vxe-button @click="loadColumnAndData(10000, 100000)">1w列20w条</vxe-button>
<vxe-button @click="loadColumnAndData(20000, 50000)">2w列5w条</vxe-button>
<vxe-button @click="loadColumnAndData(20000, 100000)">2w列10w条</vxe-button>
<vxe-button @click="loadColumnAndData(20000, 200000)">2w列20w条</vxe-button>
<vxe-button @click="$refs.xGrid.setAllCheckboxRow(true)">所有选中</vxe-button>
<vxe-button @click="$refs.xGrid.clearCheckboxRow()">清除选中</vxe-button>
<vxe-button @click="getSelectEvent">获取选中</vxe-button>
</template>
</vxe-grid>
`,
`
export default {
data () {
return {
loading: false
}
},
created () {
this.loadColumnAndData(600, 600)
},
methods: {
loadColumnAndData (colSize, rowSize) {
this.loading = true
Promise.all([
XEAjax.mockColumns(colSize),
XEAjax.mockList(rowSize)
]).then(rest => {
const columns = rest[0]
const data = rest[1]
const startTime = Date.now()
const xGrid = this.$refs.xGrid
// 使用函数式加载,阻断 vue 对大数组的双向绑定
if (xGrid) {
Promise.all([
xGrid.reloadColumn(columns),
xGrid.reloadData(data)
]).then(() => {
this.$XModal.message({ message: \`渲染 \${colSize}\${rowSize} 行,用时 \${Date.now() - startTime}毫秒\`, status: 'info' })
this.loading = false
})
}
})
},
getSelectEvent () {
let selectRecords = this.$refs.xGrid.getCheckboxRecords()
this.$XModal.alert(selectRecords.length)
}
}
}
`
]
}
},
created () {
this.loadColumnAndData(600, 600)
},
mounted () {
Array.from(this.$el.querySelectorAll('pre code')).forEach((block) => {
hljs.highlightBlock(block)
})
},
methods: {
loadColumnAndData (colSize, rowSize) {
this.loading = true
Promise.all([
XEAjax.mockColumns(colSize),
XEAjax.mockList(rowSize)
]).then(rest => {
const columns = rest[0]
const data = rest[1]
const startTime = Date.now()
const xGrid = this.$refs.xGrid
// 使用函数式加载,阻断 vue 对大数组的双向绑定
if (xGrid) {
Promise.all([
xGrid.reloadColumn(columns),
xGrid.reloadData(data)
]).then(() => {
this.$XModal.message({ message: `渲染 ${colSize}${rowSize} 行,用时 ${Date.now() - startTime}毫秒`, status: 'info' })
this.loading = false
})
}
})
},
getSelectEvent () {
const selectRecords = this.$refs.xGrid.getCheckboxRecords()
this.$XModal.alert(selectRecords.length)
}
}
}
</script>