| | |
| | | |
| | | // 右侧 Pane 输出 |
| | | const _bookSeqNum = bookSeqNum.value??props.appointment?.bookSeqNum |
| | | panel.addPrintText({ options: { width: 140, height: 20, top: 0, left: 160, title: ''+_bookSeqNum, textAlign: 'center', fontSize: 30, fontFamily: '微软雅黑', fontWeight: '1200' } }); |
| | | panel.addPrintText({ options: { width: 140, height: 20, top: 5, left: 160, title: ''+_bookSeqNum, textAlign: 'center', fontSize: 30, fontFamily: '微软雅黑', fontWeight: '1200' } }); |
| | | |
| | | // 注意事项 |
| | | const notes = checkTypeStore.getCheckTypeNotes(props.appointment.bookCheckType) |
| | | panel.addPrintText({ options: { width: 140, height: 40, top: 30, left: 160, title: notes, textAlign: 'center', fontSize: 13, fontFamily: '微软雅黑', fontWeight: '700', } }); |
| | | panel.addPrintText({ options: { width: 140, height: 40, top: 35, left: 160, title: notes, textAlign: 'center', fontSize: 13, fontFamily: '微软雅黑', fontWeight: '700', } }); |
| | | |
| | | //打印 |
| | | if (undefined === printMode) |