项目结构调整 x 11 : 修改前端项目为 yudao-admin-ui

This commit is contained in:
YunaiV
2021-04-30 14:15:31 +08:00
parent d5883771c8
commit f336b801b9
281 changed files with 14070 additions and 14097 deletions

View File

@ -0,0 +1,26 @@
// 导出参数
import request from "@/utils/request";
export function exportHtml() {
return request({
url: '/infra/db-doc/export-html',
method: 'get',
responseType: 'blob'
})
}
export function exportWord() {
return request({
url: '/infra/db-doc/export-word',
method: 'get',
responseType: 'blob'
})
}
export function exportMarkdown() {
return request({
url: '/infra/db-doc/export-markdown',
method: 'get',
responseType: 'blob'
})
}