生成数据

This commit is contained in:
shidongli 2024-05-23 10:29:59 +08:00
parent a46b3f7a65
commit 5e5b5f33ad
2 changed files with 722 additions and 326 deletions

View File

@ -0,0 +1,29 @@
import request from '@/utils/request'
// 生成数据---任务节点列表
export function getAllNodeByPatient(query) {
return request({
url: '/manage/signnode/getSpecialDiseaseNode',
method: 'get',
params: query
})
}
// 根据节点id提取参数列表
export function getParams(query) {
return request({
url: '/system/specialDiseaseNode/getParams',
method: 'get',
params: query
})
}
// 提交
export function inserList(data) {
return request({
url: '/manage/nodeParamsCurrent/inserList',
method: 'post',
data: data
})
}
//

File diff suppressed because it is too large Load Diff