su
su1124
2024-02-04 0efe80f285b799fbf376c6567889dfa9061b72ec
src/api/hosp/project.js
@@ -17,6 +17,15 @@
  })
}
// 查询体检项目列表(树形结构)
export function getAllChildListById(data) {
  return request({
    url: 'hosp/project/getAllChildListById',
    method: 'get',
    params: data
  })
}
// 查询体检项目详细
export function getProject(proId) {
  return request({
@@ -59,6 +68,14 @@
  })
}
// 查询部门下拉树结构
export function deptTree111() {
  return request({
    url: 'system/dept/deptTree111',
    method: 'get'
  })
}
// 新增体检项目
export function getChartByDeptId(query) {
@@ -76,3 +93,12 @@
    params: query
  })
}
// 查询体检项目详细
export function getInfoByProId(proId) {
  return request({
    url: 'hosp/project/getInfoByProId',
    method: 'get',
    params: {proId:proId}
  })
}