qinxianzhangyao
2024-04-26 47a7c6d2458ebd3c4722cbd1938d3f28a99e78ad
src/api/system/tijian.js
@@ -18,10 +18,29 @@
  })
}
// 每个项目
// 选择体检项目(所有服项目)选单项时调用的接口
export function projectGetList() {
  return request({
    url: '/hosp/project/getlist',
    url: '/hosp/project/getDxList',
    method: 'get',
  })
}
// 选择体检项目(根据父项id选择子项)选单项时调用的接口
export function getProSonDxList(proId) {
  return request({
    url: '/hosp/project/getProSonDxList',
    method: 'get',
    params:{
      proId:proId
    }
  })
}
export function getProParentIdDxList() {
  return request({
    url: '/hosp/project/getProParentIdDxList',
    method: 'get',
  })
}
@@ -141,3 +160,10 @@
   
  })
}
export function getconfigKey(configKey) {
  return request({
    url: '/system/config/configKey/' + configKey,
    method: 'get'
  })
}