123456789101112131415161718192021222324252627282930 |
- module.exports = {
- boardInfo: {
- newDeviceTip: '这是一台新的看板设备,请在呼叫中心管理后台设置该设备的所属科室。',
- newDeviceTipMacLabel: '该设备MAC地址为',
- newDeviceTipIDLabel: 'ID号为',
- newDeviceTipQuestionLabel: '如有疑问,请联系管理员,谢谢!',
- firstScreenTitle: 'Bed Infomation',
- secondScreenTitle: 'Depart Infomation',
- latestInteraction: 'Last Interaction',
- inHostpitalDate: 'In Date',
- doctorIncharge: 'DOCTOR',
- nurseIncharge: 'NURSE',
- bedsTotal: 'Beds Total',
- inUseBedTotal: 'Used Total', //已入住的床位总数
- emptyBedTotal: 'Empty Total',
- todayInBeds: 'Today In',
- todayOutBeds: 'Today Out',
- avaiableBeds: 'Available Beds'
- },
- ageUint: {
- year: 'Y',
- month: 'M',
- day: 'D'
- },
- gender: {
- male: 'M',
- female: 'F',
- unknow: 'Unknow'
- }
- }
|