tiny-vue/examples/sites/demos/pc/app/grid/tree-table/tree-grid-expand-active-met...

84 lines
2.6 KiB
Vue
Raw Permalink 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>
<tiny-grid
:data="tableData"
:tree-config="{ trigger: 'row', children: 'children', hideMethod: hideTree }"
:resizable="false"
>
<tiny-grid-column type="index" width="60"></tiny-grid-column>
<tiny-grid-column field="name" title="公司名称" tree-node></tiny-grid-column>
<tiny-grid-column field="area" title="区域"></tiny-grid-column>
<tiny-grid-column field="employees" title="员工数"></tiny-grid-column>
</tiny-grid>
</template>
<script>
import { Grid, GridColumn } from '@opentiny/vue'
export default {
components: {
TinyGrid: Grid,
TinyGridColumn: GridColumn
},
mounted() {},
data() {
return {
tableData: [
{
id: '1',
pid: '0',
name: 'GFD科技有限公司',
area: '华东区',
employees: '800',
introduction: '公司技术和研发实力雄厚是国家863项目的参与者并被政府认定为“高新技术企业”。',
children: [
{
id: '3',
pid: '1',
name: 'GFD科技股份有限子公司',
area: '华东区',
employees: '700',
introduction: '公司技术和研发实力雄厚是国家863项目的参与者并被政府认定为“高新技术企业”。',
children: [
{
id: '5',
pid: '1',
name: '不展示改行',
area: '华南区',
employees: '720',
introduction: '公司技术和研发实力雄厚是国家863项目的参与者并被政府认定为“高新技术企业”。'
}
]
}
]
},
{
id: '2',
pid: '0',
name: 'WWWW科技有限公司',
area: '华南区',
employees: '500',
introduction: '公司技术和研发实力雄厚是国家863项目的参与者并被政府认定为“高新技术企业”。',
children: [
{
id: '4',
pid: '2',
name: 'WWWW科技股份有限子公司',
area: '华南区',
employees: '720',
introduction: '公司技术和研发实力雄厚是国家863项目的参与者并被政府认定为“高新技术企业”。'
}
]
}
]
}
},
methods: {
// 可以使用数据行row和行级别rowLevel控制是否渲染树表行
hideTree(row, rowLevel) {
// 行级别为2的行不渲染
return rowLevel === 2
}
}
}
</script>