Files
vxe-table/examples/views/table/scroll/MaxHeight.vue
xuliangzhan 44f91141ae 工程优化
2020-02-21 18:19:51 +08:00

203 lines
7.0 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">最大高度通过设置 <table-api-link prop="max-height"/> 启用当数据少时自适应</p>
<vxe-table
border
resizable
show-overflow
ref="xTable1"
max-height="400"
:loading="loading">
<vxe-table-column type="checkbox" width="60"></vxe-table-column>
<vxe-table-column type="seq" width="100"></vxe-table-column>
<vxe-table-column field="name" title="Name" sortable width="200"></vxe-table-column>
<vxe-table-column field="age" title="Age" width="200"></vxe-table-column>
<vxe-table-column field="sex" title="Sex" width="200"></vxe-table-column>
<vxe-table-column field="region" title="Region" width="200"></vxe-table-column>
<vxe-table-column field="address" title="Address" width="300" show-overflow></vxe-table-column>
<vxe-table-column field="updateTime" title="UpdateTime" width="200"></vxe-table-column>
<vxe-table-column field="createTime" title="CreateTime" width="200"></vxe-table-column>
</vxe-table>
<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-table
border
resizable
show-overflow
ref="xTable2"
max-height="400"
:loading="loading">
<vxe-table-column type="checkbox" width="60"></vxe-table-column>
<vxe-table-column type="seq" width="100"></vxe-table-column>
<vxe-table-column field="name" title="Name" sortable width="200"></vxe-table-column>
<vxe-table-column field="age" title="Age" width="200"></vxe-table-column>
<vxe-table-column field="rate" title="Rate" width="200"></vxe-table-column>
<vxe-table-column field="time" title="Time" width="200"></vxe-table-column>
<vxe-table-column field="updateTime" title="UpdateTime" width="200"></vxe-table-column>
<vxe-table-column field="createTime" title="CreateTime" width="200"></vxe-table-column>
</vxe-table>
<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 hljs from 'highlight.js'
export default {
data () {
return {
loading: false,
demoCodes: [
`
<vxe-table
border
resizable
show-overflow
ref="xTable"
max-height="400"
:loading="loading">
<vxe-table-column type="checkbox" width="60"></vxe-table-column>
<vxe-table-column type="seq" width="100"></vxe-table-column>
<vxe-table-column field="name" title="Name" sortable width="200"></vxe-table-column>
<vxe-table-column field="age" title="Age" width="200"></vxe-table-column>
<vxe-table-column field="region" title="Region" width="200"></vxe-table-column>
<vxe-table-column field="address" title="Address" width="300" show-overflow></vxe-table-column>
<vxe-table-column field="updateTime" title="UpdateTime" width="200"></vxe-table-column>
<vxe-table-column field="createTime" title="CreateTime" width="200"></vxe-table-column>
</vxe-table>
`,
`
export default {
data () {
return {
loading: false
}
},
created () {
this.findList()
},
methods: {
findList () {
this.loading = true
return new Promise(resolve => {
setTimeout(() => {
let tableData = window.MOCK_DATA_LIST.slice(0, 3)
// 阻断 vue 对大数组的监听,避免 vue 绑定大数据造成短暂的卡顿
if (this.$refs.xTable) {
this.$refs.xTable.loadData(tableData)
}
resolve()
this.loading = false
}, 300)
})
}
}
}
`,
`
<vxe-table
border
resizable
show-overflow
ref="xTable"
max-height="400"
:loading="loading">
<vxe-table-column type="checkbox" width="60"></vxe-table-column>
<vxe-table-column type="seq" width="100"></vxe-table-column>
<vxe-table-column field="name" title="Name" sortable width="200"></vxe-table-column>
<vxe-table-column field="age" title="Age" width="200"></vxe-table-column>
<vxe-table-column field="sex" title="Sex" width="200"></vxe-table-column>
<vxe-table-column field="rate" title="Rate" width="200"></vxe-table-column>
<vxe-table-column field="time" title="Time" width="200"></vxe-table-column>
<vxe-table-column field="updateTime" title="UpdateTime" width="200"></vxe-table-column>
<vxe-table-column field="createTime" title="CreateTime" width="200"></vxe-table-column>
</vxe-table>
`,
`
export default {
data () {
return {
loading: false
}
},
created () {
this.findList()
},
methods: {
findList () {
this.loading = true
return new Promise(resolve => {
setTimeout(() => {
let tableData = window.MOCK_DATA_LIST.slice(0, 600)
// 阻断 vue 对大数组的监听,避免 vue 绑定大数据造成短暂的卡顿
if (this.$refs.xTable) {
this.$refs.xTable.loadData(tableData)
}
resolve()
this.loading = false
}, 300)
})
}
}
}
`
]
}
},
created () {
this.findList1()
this.findList2()
},
mounted () {
Array.from(this.$el.querySelectorAll('pre code')).forEach((block) => {
hljs.highlightBlock(block)
})
},
methods: {
findList1 () {
this.loading = true
return new Promise(resolve => {
setTimeout(() => {
const tableData = window.MOCK_DATA_LIST.slice(0, 3)
// 阻断 vue 对大数组的监听,避免 vue 绑定大数据造成短暂的卡顿
if (this.$refs.xTable1) {
this.$refs.xTable1.loadData(tableData)
}
resolve()
this.loading = false
}, 300)
})
},
findList2 () {
this.loading = true
return new Promise(resolve => {
setTimeout(() => {
const tableData = window.MOCK_DATA_LIST.slice(0, 600)
// 阻断 vue 对大数组的监听,避免 vue 绑定大数据造成短暂的卡顿
if (this.$refs.xTable2) {
this.$refs.xTable2.loadData(tableData)
}
resolve()
this.loading = false
}, 300)
})
}
}
}
</script>