qx
qx
2025-05-30 caef1ff213da160e818342eceb3d77fac0db280d
src/api/hosp/history.js
@@ -44,9 +44,27 @@
}
//根据客户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
    })
}