17 lines
458 B

import { defHttp } from '@/utils/http/axios'
// 导出Html
export function exportHtmlApiasync() {
2 years ago
return defHttp.get({ url: '/infra/db-doc/export-html', responseType: 'blob' })
}
// 导出Word
export function exportWordApi() {
2 years ago
return defHttp.get({ url: '/infra/db-doc/export-word', responseType: 'blob' })
}
// 导出Markdown
export function exportMarkdownApi() {
2 years ago
return defHttp.get({ url: '/infra/db-doc/export-markdown', responseType: 'blob' })
}