| | |
| | | gap={1} |
| | | > |
| | | <Typography variant="body2"> |
| | | {format(record.sendTime, 'yyyy-MM-dd HH:mm:ss')} |
| | | {format(record.sendTime, 'yyyy-MM-dd HH:mm:ss') || '-'} |
| | | </Typography> |
| | | </Stack> |
| | | </Box> |
| | |
| | | Bus No |
| | | </Typography> |
| | | <Typography variant="body2"> |
| | | {record.busNo} |
| | | {record.busNo || '-'} |
| | | </Typography> |
| | | </Box> |
| | | |
| | |
| | | </Box> |
| | | )} |
| | | |
| | | {record.description && ( |
| | | {!!record.codeList?.length && ( |
| | | <Box m={2} sx={{ whiteSpace: 'pre-line' }}> |
| | | <Typography |
| | | color="textSecondary" |
| | | variant="caption" |
| | | > |
| | | Description |
| | | Run Path |
| | | </Typography> |
| | | <Typography variant="body2"> |
| | | {record.description} |
| | | [ {record.codeList.join(' , ')} ] |
| | | </Typography> |
| | | </Box> |
| | | )} |