vxe-grid导出文件的时间格式
时间: 2023-03-20 14:02:42 浏览: 294
Vxe Table/Grid 单元格分组合并
vxe-grid导出文件的时间格式可以通过设置日期类型的formatter来指定,如下所示:
```javascript
{
field: 'date',
title: '日期',
formatter: ({ cellValue }) => XEUtils.toDateString(cellValue, 'yyyy-MM-dd HH:mm:ss')
}
```
在上面的代码中,通过设置formatter函数来将日期类型的值转化为指定的时间格式,其中第二个参数表示时间格式,'yyyy-MM-dd HH:mm:ss'表示年份-月份-日期 时:分:秒。
阅读全文