| | |
| | | export interface AppointmentVO { |
| | | id: number, |
| | | applyNo: string // 预约申请编号 |
| | | episodeId: number //就诊流水号 |
| | | episodeId: string //就诊流水号 |
| | | patSrc: number |
| | | tolerance:number// 是否耐药 |
| | | patId: string // 患者编号 |
| | | patName: string // 患者姓名 |
| | | patGender: number // 患者性别 |
| | |
| | | createAppointment: async (data: AppointmentVO) => { |
| | | return await request.post({ url: `/ecg/appointment/create`, data }) |
| | | }, |
| | | // 状态更新 |
| | | alterAppointment: async (data: AppointmentVO) => { |
| | | return await request.post({ url: `/ecg/appointment/updateStatus`, data }) |
| | | }, |
| | | |
| | | // 修改预约 |
| | | updateAppointment: async (data: AppointmentVO) => { |