This commit is contained in:
Your Name
2026-05-18 09:42:11 +08:00
parent 15b4339c90
commit d79db88349
7 changed files with 250 additions and 1 deletions
+5
View File
@@ -319,6 +319,11 @@ export function prescriptionEdit(params: any) {
return request.post({ url: '/tcm.prescription/edit', params })
}
/** 仅修正处方笺患者姓名与手机号(不改审核状态),写入业务订单日志表 */
export function prescriptionPatchPatient(params: { id: number; patient_name: string; phone: string }) {
return request.post({ url: '/tcm.prescription/patchPatient', params })
}
// 删除处方
export function prescriptionDelete(params: { id: number }) {
return request.post({ url: '/tcm.prescription/delete', params })