cb8edc7b75
* feat: add data export action in table view * feat: add data render based on interface type for exporting * fix: use rewrite action name for permissions * feat: add support for subTable type field * add datetime render * export filter support selectedRowKeys * docs Co-authored-by: chenos <chenlinxh@gmail.com>
28 lines
358 B
Markdown
28 lines
358 B
Markdown
---
|
|
title: '@nocobase/plugin-export'
|
|
---
|
|
|
|
# @nocobase/plugin-export
|
|
|
|
提供导出功能
|
|
|
|
<Alert title="注意" type="warning">
|
|
暂时只支持 excel 导出
|
|
</Alert>
|
|
|
|
## 安装
|
|
|
|
```bash
|
|
yarn nocobase pull export --start
|
|
```
|
|
|
|
## Action API
|
|
|
|
### export
|
|
|
|
参数和 list 一致,暂时只支持 excel 导出
|
|
|
|
```ts
|
|
api.resource(resourceName).export(params);
|
|
```
|