| | |
| | | } |
| | | |
| | | //根据客户id获取问诊详细信息 |
| | | export function getInfoById(userId) { |
| | | export function getInfoById(tjNumber) { |
| | | return request({ |
| | | url: '/hosp/history/getInfoById?userId=' + userId , |
| | | url: '/hosp/history/getInfoById?tjNumber=' + tjNumber, |
| | | method: 'get', |
| | | }) |
| | | } |
| | | |
| | | // 获取症状接口集 |
| | | export function getZhengZhuang() { |
| | | return request({ |
| | | url: '/hosp/history/getZhengZhuang', |
| | | method: 'get', |
| | | }) |
| | | } |
| | | |
| | | // 删除职业症状或职业病史接口 |
| | | export function removeAskHistorys(historyId) { |
| | | return request({ |
| | | url: '/hosp/history/removeAskHistorys', |
| | | method: 'post', |
| | | data: historyId |
| | | }) |
| | | } |
| | | |