一款基於element-ui(2.9.1)改寫的支持樹形表格的大數據表格組件前端
github: github.com/Spdino/vbt-…vue
看看前端的小夥伴能不能給顆星呢, 哈哈,歡迎提交BUG和各類建議,討論····git
參數 | 說明 | 參數 | 類型 | 可選值 | 默認值 |
---|---|---|---|---|---|
initParentFunc | 用於初始化父級樹形表格數據時處理數據 | row,treeData | Function | — | — |
formateChildFunc | 展現子級樹形表格數據時處理數據 | row,parentRow,treeData | Function | — | — |
isBigData | 大數據滾動渲染 | — | Boolean | — | — |
isTreeTable | 樹形表格 | — | Boolean | — | — |
scrollYRenderConfig | 大數據滾動的配置選項 | — | Object | renderSize:一次渲染多少條數據;offsetSize:預渲染多少條數據 | { renderSize: 30, offsetSize: 10 } |
// 設置父級初始值
initParentFunc(row) {
console
row.disabled = true.log(row)
},
複製代碼
formateChildFunc(row, parent) {
console.log(row,parent)
if(parent.name) row.name = parent.name
},
複製代碼
安裝: yarn add vbt-table -S || npm install vbt-table -Sgithub
全局:在main.js中:npm
import Vue from 'vue'
import vbtTable from 'vbt-table'
Vue.use(vbtTable)
複製代碼
局部: 在組件中:element-ui
<template>
<vbt-table border
stripe
row-key="id"
size="mini"
isBigData
isTreeTable
lazy
:load="load"
highlight-hover-row
max-height="600"
:data="tableData">
<vbt-table-column prop="id"
label="ID"
width="200"
fixed="left">
</vbt-table-column>
<vbt-table-column prop="name"
label="Name"
width="200">
</vbt-table-column>
<vbt-table-column prop="sex"
label="Sex"
width="200">
</vbt-table-column>
<vbt-table-column prop="age"
label="Age"
width="200">
</vbt-table-column>
<vbt-table-column prop="role"
label="role"
width="200">
</vbt-table-column>
<vbt-table-column prop="language"
label="language"
width="200">
</vbt-table-column>
<vbt-table-column prop="rate"
label="rate"
width="200">
</vbt-table-column>
<vbt-table-column prop="address"
label="Address"
fixed="right"
show-overflow-tooltip
min-width="300">
</vbt-table-column>
</vbt-table>
</template>
<script>
import {vbtTable,vbtTableColumn} from 'vbt-table'
function mockData(num, cId) {
let fullIndex = 0
const list = []
for (let index = 0; index < num; index++) {
fullIndex++
cId && (cId = Number(cId) + 1)
list.push({
id: cId || fullIndex,
hasChildren: cId > 1000000 ? false : true,
// children: !cId ? mockData(30, `${fullIndex}0000000`) : [],
role: 'role_' + fullIndex,
language: index % 2 === 0 ? 'zh_CN' : 'en_US',
name: 'name_' + fullIndex,
sex: index % 3 ? '男' : '女',
age: 18,
rate: 5,
address: `地址 地址地址 地址地址 址地址址地址 址地址 址地址 址地址 址地址 址地址 址地址址地址址地址 地址${index}`
})
}
return list
}
export default {
components: { vbtTable, vbtTableColumn },
data() {
return {
tableData: mockData(1000)
}
},
methods: {
load(row, resolve) {
setTimeout(() => {
resolve(mockData(30, `${row.id}000`))
}, 1000)
}
}
}
</script>
複製代碼