(document_name, knowledge_id, document_ids, loading)
| 189 | document_ids: string[], |
| 190 | loading?: Ref<boolean>, |
| 191 | ) => Promise<any> = (document_name, knowledge_id, document_ids, loading) => { |
| 192 | return exportExcelPost( |
| 193 | document_name.trim() + '.xlsx', |
| 194 | `${prefix.value}/${knowledge_id}/document/batch_export`, |
| 195 | {}, |
| 196 | document_ids, |
| 197 | loading, |
| 198 | ) |
| 199 | } |
| 200 | /** |
| 201 | * 导出文档 |
| 202 | * @param document_name 文档名称 |
nothing calls this directly
no test coverage detected