| | |
| | | // 预约 VO |
| | | export interface AppointmentVO { |
| | | id: number, |
| | | applyNo: string |
| | | patSrc: number |
| | | patId: string // 患者编号 |
| | | patName: string // 患者姓名 |
| | | patGender: number // 患者性别 |
| | | patBirthday: Date // 患者生日 |
| | | patAge: number |
| | | patMobile: string // 患者手机 |
| | | patPhone: string // 患者电话 |
| | | patIdentityId: string // 身份证号 |
| | |
| | | return await request.download({ url: `/ecg/appointment/export-excel`, params }) |
| | | }, |
| | | |
| | | // 修改预约 |
| | | // 预约确认 |
| | | confirmAppointment: async (data: AppointmentVO) => { |
| | | return await request.post({ url: `/ecg/appointment/confirm`, data }) |
| | | }, |
| | | |
| | | // VIP预约确认 |
| | | confirmAppointmentVip: async (data: AppointmentVO) => { |
| | | return await request.post({ url: `/ecg/appointment/confirm-vip`, data }) |
| | | } |
| | | |
| | | } |