| | |
| | | export interface AppointmentVO { |
| | | id: number, |
| | | applyNo: string |
| | | episodeId: number //就诊流水号 |
| | | patSrc: number |
| | | patId: string // 患者编号 |
| | | patName: string // 患者姓名 |
| | |
| | | panel.addPrintText({ options: { width: 140, height: 12, top: 44, left: 20, title: bookTime, textAlign: 'center', fontSize: 10, fontFamily: '微软雅黑', fontWeight: '700', } }); |
| | | panel.addPrintText({ options: { width: 140, height: 12, top: 58, left: 20, title: curAppointment.patId, textAlign: 'center', fontSize: 10, fontFamily: '微软雅黑', fontWeight: '700', } }); |
| | | panel.addPrintText({ options: { width: 140, height: 12, top: 72, left: 20, title: curAppointment.patMobile, textAlign: 'center', fontSize: 10, fontFamily: '微软雅黑', fontWeight: '700', } }); |
| | | //条形码 |
| | | panel.addPrintText({ options: { width: 140, height: 22, top: 86, left: 20, title: curAppointment.patId, textType: 'barcode' } }); |
| | | //条形码 |
| | | panel.addPrintText({ options: { width: 140, height: 22, top: 86, left: 20, title: curAppointment.episodeId, textType: 'barcode' } }); |
| | | |
| | | //打印 |
| | | if (undefined === printMode) |