| | |
| | | }) |
| | | } |
| | | |
| | | // 每个项目 |
| | | // 选择体检项目(所有服项目)选单项时调用的接口 |
| | | 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', |
| | | }) |
| | | } |
| | |
| | | |
| | | }) |
| | | } |
| | | |
| | | export function getconfigKey(configKey) { |
| | | return request({ |
| | | url: '/system/config/configKey/' + configKey, |
| | | method: 'get' |
| | | }) |
| | | } |