vxe-table的exportConfig导出全量数据的参数设置分组表头
时间: 2024-04-09 15:33:11 浏览: 184
vxe-table vue表格解决方案 v2.11.0.zip
在vxe-table中,可以使用exportConfig来配置导出全量数据的参数设置,包括分组表头。以下是一个示例:
```javascript
exportConfig: {
columns: [
{
field: 'name',
title: '姓名',
exportMethod: 'ignore'
},
{
field: 'age',
title: '年龄'
},
{
field: 'gender',
title: '性别'
},
{
field: 'group',
title: '分组',
children: [
{
field: 'groupA',
title: 'A组'
},
{
field: 'groupB',
title: 'B组'
}
]
}
]
}
```
在上面的示例中,我们定义了四列数据,其中"分组"列拥有两个子列"A组"和"B组"。通过设置`children`属性,可以实现分组表头的效果。
在导出配置中,我们可以使用`columns`属性来设置需要导出的列,并可以使用`exportMethod`属性来设置导出方式。在上面的示例中,我们将"姓名"列的`exportMethod`设置为"ignore",表示在导出时忽略该列。
这样配置后,在导出数据时,vxe-table会根据配置生成相应的分组表头。
阅读全文