mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-16 12:05:07 +08:00
11 lines
195 B
JavaScript
11 lines
195 B
JavaScript
// 导出参数
|
|
import request from "@/utils/request";
|
|
|
|
export function exportHtml() {
|
|
return request({
|
|
url: '/infra/db-doc/export-html',
|
|
method: 'get',
|
|
responseType: 'blob'
|
|
})
|
|
}
|