| | |
| | | } |
| | | }) |
| | | } |
| | | |
| | | |
| | | |
| | | // 每个项目 |
| | | export function getIsRequired() { |
| | | return request({ |
| | | url: '/hosp/order/getIsRequired', |
| | | method: 'get', |
| | | }) |
| | | } |
| | | |
| | | // 选择体检项目(所有服项目)选单项时调用的接口 |
| | | 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 getHistryTjOrderByCusIdCard(cusIdCard) { |
| | | return request({ |
| | | url:'/hosp/order/getHistryTjOrderByCusIdCard', |
| | | method:'get', |
| | | params:{cusIdCard:cusIdCard} |
| | | |
| | | }) |
| | | } |
| | | |
| | | // 根据身份证号查看历史体检项目记录 |
| | | export function getHistryTjOrderProByCusIdCard(cusIdCard) { |
| | | return request({ |
| | | url:'/hosp/order/getHistryTjOrderProByCusIdCard', |
| | | method:'get', |
| | | params:{cusIdCard:cusIdCard} |
| | | |
| | | }) |
| | | } |
| | | |
| | | export function getconfigKey(configKey) { |
| | | return request({ |
| | | url: '/system/config/configKey/' + configKey, |
| | | method: 'get' |
| | | }) |
| | | } |