新增门诊医生站取消接诊功能

This commit is contained in:
qk123
2025-11-13 13:41:48 +08:00
parent ce9344f9ce
commit aca7fea69f
5 changed files with 114 additions and 5 deletions

View File

@@ -63,6 +63,16 @@ export function completeEncounter(encounterId) {
})
}
/**
* 取消接诊
*/
export function cancelEncounter(encounterId) {
return request({
url: '/doctor-station/main/cancel-encounter?encounterId=' + encounterId,
method: 'get',
})
}
/**
* 保存病历
*/