(document_name, knowledge_id, document_ids, loading)
| 181 | document_ids: string[], |
| 182 | loading?: Ref<boolean>, |
| 183 | ) => Promise<any> = (document_name, knowledge_id, document_ids, loading) => { |
| 184 | return exportExcelPost( |
| 185 | document_name.trim() + '.xlsx', |
| 186 | `${prefix}/${knowledge_id}/document/batch_export`, |
| 187 | {}, |
| 188 | document_ids, |
| 189 | loading, |
| 190 | ) |
| 191 | } |
| 192 | /** |
| 193 | * 导出文档 |
| 194 | * @param document_name 文档名称 |
nothing calls this directly
no test coverage detected