2024-02-29 16:29:34 +08:00
|
|
|
import request from '@/utils/request'
|
|
|
|
|
|
|
|
|
|
export function getHistoryResult(data: any) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/harmonic-boot/harmonic/getHistoryResult',
|
|
|
|
|
method: 'post',
|
|
|
|
|
data: data
|
|
|
|
|
})
|
|
|
|
|
}
|
2024-08-08 11:04:59 +08:00
|
|
|
// word报告
|
|
|
|
|
export function exportModelJB(data: any) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/harmonic-boot/exportmodel/exportModelJB',
|
|
|
|
|
method: 'post',
|
|
|
|
|
responseType: 'blob',
|
|
|
|
|
data: data
|
|
|
|
|
})
|
|
|
|
|
}
|