UNPKG

@jdlinker/system

Version:

jdLinker 系统模块

17 lines (13 loc) 540 B
import { defHttp } from '@jdlinker/func'; // 导出Html export function exportHtml() { return defHttp.get({ url: '/infra/db-doc/export-html', responseType: 'blob' }, { isTransformResponse: false }); } // 导出Word export function exportWord() { return defHttp.get({ url: '/infra/db-doc/export-word', responseType: 'blob' }, { isTransformResponse: false }); } // 导出Markdown export function exportMarkdown() { return defHttp.get({ url: '/infra/db-doc/export-markdown', responseType: 'blob' }, { isTransformResponse: false }); }