健康体征报告

This commit is contained in:
xiezhijun
2021-02-26 18:45:56 +08:00
parent 912300838a
commit 488a149ec3
12 changed files with 640 additions and 2 deletions

View File

@ -61,4 +61,14 @@ export function download(fileName) {
})
}
// 生成健康体征报告
export function generateHealthyReport(healthyDetail) {
return request({
url: '/custom/healthy/generateHealthyReport',
method: 'post',
data: healthyDetail
})
}