| | |
| | | }) |
| | | } |
| | | |
| | | export function getPacTjProjectList() { |
| | | return request({ |
| | | url: '/hosp/project/getPacTjProjectList', |
| | | method: 'get', |
| | | }) |
| | | } |
| | | |
| | | // 更改体检套餐中的项目 |
| | | |
| | | export function updateProject(data) { |
| | |
| | | params: query |
| | | }) |
| | | } |
| | | |
| | | // 查询个人影响检查项目结果集 |
| | | export function getTjYxjcList(data) { |
| | | return request({ |
| | | url: '/system/dept/getTjYxjcList', |
| | | method: 'get', |
| | | params: data |
| | | }) |
| | | } |
| | | |
| | | |
| | | |
| | | export function getZhList(query) { |
| | | return request({ |
| | | url: '/system/zhxm/getZhList', |
| | | method: 'get', |
| | | params: query |
| | | }) |
| | | } |
| | | |
| | | export function addzhxm(data) { |
| | | return request({ |
| | | url: '/system/zhxm', |
| | | method: 'post', |
| | | data: data |
| | | }) |
| | | } |
| | | |
| | | export function modifyzhxm(data) { |
| | | return request({ |
| | | url: '/system/zhxm', |
| | | method: 'put', |
| | | data: data |
| | | }) |
| | | } |
| | | |
| | | |
| | | export function delzhxm(pacIds) { |
| | | return request({ |
| | | url: '/system/zhxm/' + pacIds, |
| | | method: 'delete' |
| | | }) |
| | | } |